ES-DE/src/components/GuiInputConfig.h
Aloshi 04841ca436 More work.
I really am nuts.
2013-04-08 11:52:40 -05:00

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