mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
24 lines
348 B
C
24 lines
348 B
C
|
#ifndef _GUIDETECTDEVICE_H_
|
||
|
#define _GUIDETECTDEVICE_H_
|
||
|
|
||
|
#include "../Gui.h"
|
||
|
|
||
|
class GuiDetectDevice : public Gui
|
||
|
{
|
||
|
public:
|
||
|
GuiDetectDevice(Window* window);
|
||
|
|
||
|
void input(InputConfig* config, Input input);
|
||
|
void update(int deltaTime);
|
||
|
void render();
|
||
|
|
||
|
private:
|
||
|
void done();
|
||
|
|
||
|
bool mHoldingFinish;
|
||
|
int mFinishTimer;
|
||
|
int mCurrentPlayer;
|
||
|
};
|
||
|
|
||
|
#endif
|