screen concept
This commit is contained in:
15
src/main_screen.hpp
Normal file
15
src/main_screen.hpp
Normal file
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "./screen.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
struct MainScreen final : public Screen {
|
||||
MainScreen(std::string save_path);
|
||||
~MainScreen(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