tomato/src/start_screen.hpp

14 lines
235 B
C++
Raw Normal View History

2023-07-26 12:24:18 +02:00
#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;
};