ES-DE/src/components/GuiDetectDevice.h

24 lines
366 B
C
Raw Normal View History

#ifndef _GUIDETECTDEVICE_H_
#define _GUIDETECTDEVICE_H_
2013-06-02 15:08:32 +00:00
#include "../GuiComponent.h"
2013-06-02 15:08:32 +00:00
class GuiDetectDevice : public GuiComponent
{
public:
GuiDetectDevice(Window* window);
2013-06-02 15:08:32 +00:00
bool input(InputConfig* config, Input input);
void update(int deltaTime);
void render();
private:
void done();
bool mHoldingFinish;
int mFinishTimer;
int mCurrentPlayer;
};
#endif