mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 15:15:38 +00:00
23 lines
352 B
C
23 lines
352 B
C
|
#ifndef _GUIMENU_H_
|
||
|
#define _GUIMENU_H_
|
||
|
|
||
|
#include "../GuiComponent.h"
|
||
|
#include "GuiList.h"
|
||
|
|
||
|
class GuiMenu : public GuiComponent
|
||
|
{
|
||
|
public:
|
||
|
GuiMenu(GuiComponent* parent);
|
||
|
~GuiMenu();
|
||
|
|
||
|
void onInput(InputManager::InputButton button, bool keyDown);
|
||
|
void onRender();
|
||
|
|
||
|
private:
|
||
|
GuiComponent* mParent;
|
||
|
GuiList* mList;
|
||
|
bool mSkippedMenuClose;
|
||
|
};
|
||
|
|
||
|
#endif
|