mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
23 lines
345 B
C++
23 lines
345 B
C++
#ifndef _GUIGAMELIST_H_
|
|
#define _GUIGAMELIST_H_
|
|
|
|
#include "../GuiComponent.h"
|
|
#include "GuiList.h"
|
|
#include <string>
|
|
#include "../SystemData.h"
|
|
#include "../GameData.h"
|
|
|
|
class GuiGameList : GuiComponent
|
|
{
|
|
public:
|
|
GuiGameList(SystemData* system);
|
|
void updateList();
|
|
|
|
void onRender();
|
|
private:
|
|
SystemData* mSystem;
|
|
GuiList* mList;
|
|
};
|
|
|
|
#endif
|