mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-28 00:55:39 +00:00
04841ca436
I really am nuts.
24 lines
378 B
C++
24 lines
378 B
C++
#ifndef _GUIINPUTCONFIG_H_
|
|
#define _GUIINPUTCONFIG_H_
|
|
|
|
#include "../Gui.h"
|
|
#include <map>
|
|
#include <SDL/SDL.h>
|
|
|
|
class GuiInputConfig : public Gui
|
|
{
|
|
public:
|
|
GuiInputConfig(Window* window);
|
|
~GuiInputConfig();
|
|
|
|
void render();
|
|
void input(InputConfig* config, Input input);
|
|
private:
|
|
bool mDone;
|
|
int mInputNum;
|
|
static std::string sInputs[];
|
|
static int sInputCount;
|
|
};
|
|
|
|
#endif
|