mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
f368a1f4cd
Also, config files can have comments (lines that start wih #).
28 lines
451 B
C++
28 lines
451 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();
|
|
~GuiGameList();
|
|
|
|
void updateList();
|
|
void setSystemId(int id);
|
|
|
|
void onRender();
|
|
void onInput(InputManager::InputButton button, bool keyDown);
|
|
private:
|
|
SystemData* mSystem;
|
|
int mSystemId;
|
|
GuiList* mList;
|
|
};
|
|
|
|
#endif
|