aboutsummaryrefslogtreecommitdiff
path: root/Museum.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-21 17:54:56 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-21 17:54:56 +0200
commit10ce9f45b9551dc103272c2b2374db1c1e3b8bcb (patch)
tree4fba15ce11c42dbfadca5cf6ff7a4c0b774ff507 /Museum.h
parent90652f512e9621e0dfac497439c7c80bf113d9d5 (diff)
add ControlBooleanCommand
Diffstat (limited to 'Museum.h')
-rw-r--r--Museum.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Museum.h b/Museum.h
index 09583d9..7d55ba6 100644
--- a/Museum.h
+++ b/Museum.h
@@ -20,14 +20,12 @@ public:
CollisionContext collision;
public:
- void set_pause(bool paused);
- bool get_pause() { return this->paused; }
+ bool paused = true;
void update();
void skip_forward();
void skip_backward();
private:
- bool paused = true;
unsigned long jump = 0;
private: