screen concept
This commit is contained in:
13
src/start_screen.hpp
Normal file
13
src/start_screen.hpp
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "./screen.hpp"
|
||||
|
||||
struct StartScreen final : public Screen {
|
||||
StartScreen(void);
|
||||
~StartScreen(void) = default;
|
||||
|
||||
// return nullptr if not next
|
||||
// sets bool quit to true if exit
|
||||
Screen* poll(bool&) override;
|
||||
};
|
||||
|
Reference in New Issue
Block a user