start screen refactor

This commit is contained in:
2024-01-05 14:47:08 +01:00
parent 9c0ffd38ce
commit 5a0252d8d0
6 changed files with 114 additions and 74 deletions

View File

@ -11,7 +11,7 @@
StartScreen::StartScreen(SDL_Renderer* renderer) : _renderer(renderer) {
}
Screen* StartScreen::poll(bool&) {
Screen* StartScreen::render(float, bool&) {
// TODO: imgui tox profile selector?
@ -137,3 +137,7 @@ Screen* StartScreen::poll(bool&) {
return nullptr;
}
Screen* StartScreen::tick(float, bool&) {
return nullptr;
}