ES-DE/src/components/GuiInputConfig.h

24 lines
411 B
C
Raw Normal View History

#ifndef _GUIINPUTCONFIG_H_
#define _GUIINPUTCONFIG_H_
2013-06-02 15:08:32 +00:00
#include "../GuiComponent.h"
#include <string>
2013-06-02 15:08:32 +00:00
class GuiInputConfig : public GuiComponent
2013-04-08 16:52:40 +00:00
{
public:
GuiInputConfig(Window* window, InputConfig* target);
2013-06-02 15:08:32 +00:00
bool input(InputConfig* config, Input input);
void update(int deltaTime);
void render();
private:
std::string mErrorMsg;
InputConfig* mTargetConfig;
int mCurInputId;
bool mCanSkip;
};
#endif