mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
17 lines
268 B
C++
17 lines
268 B
C++
|
#include "GuiGameList.h"
|
||
|
|
||
|
GuiGameList::GuiGameList(std::string systemName)
|
||
|
{
|
||
|
mSystemName = systemName;
|
||
|
|
||
|
mList = new GuiList();
|
||
|
|
||
|
addChild(mList);
|
||
|
}
|
||
|
|
||
|
void GuiGameList::onRender()
|
||
|
{
|
||
|
SDL_Color color = {0, 0, 255};
|
||
|
Renderer::drawCenteredText(mSystemName, 2, color);
|
||
|
}
|