| 8 | #include "GuiSettingsMenu.h" |
| 9 | |
| 10 | GuiMenu::GuiMenu(Window* window, GuiGameList* parent) : GuiComponent(window) |
| 11 | { |
| 12 | mParent = parent; |
| 13 | |
| 14 | std::shared_ptr<Font> font = Font::get(*mWindow->getResourceManager(), Font::getDefaultPath(), FONT_SIZE_LARGE); |
| 15 | mList = new TextListComponent<std::string>(mWindow, 0.0f, font->getHeight() + 2.0f, font); |
| 16 | mList->setSelectedTextColor(0x0000FFFF); |
| 17 | populateList(); |
| 18 | } |
| 19 | |
| 20 | GuiMenu::~GuiMenu() |
| 21 | { |
nothing calls this directly
no test coverage detected