ES-DE/src/components/GuiGameList.h

20 lines
281 B
C
Raw Normal View History

#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