mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 15:15:38 +00:00
20 lines
281 B
C
20 lines
281 B
C
|
#ifndef _GUIGAMELIST_H_
|
||
|
#define _GUIGAMELIST_H_
|
||
|
|
||
|
#include "../GuiComponent.h"
|
||
|
#include "GuiList.h"
|
||
|
#include <string>
|
||
|
|
||
|
class GuiGameList : GuiComponent
|
||
|
{
|
||
|
public:
|
||
|
GuiGameList(std::string systemName);
|
||
|
|
||
|
void onRender();
|
||
|
private:
|
||
|
std::string mSystemName;
|
||
|
GuiList* mList;
|
||
|
};
|
||
|
|
||
|
#endif
|