diff options
Diffstat (limited to 'Museum.h')
-rw-r--r-- | Museum.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -18,10 +18,11 @@ public: Canvas canvas; public: - bool paused = false; + void set_pause(bool paused); + void update(); private: - void update(); + bool paused = false; private: static constexpr std::chrono::milliseconds tick_interval = 10ms; |