aboutsummaryrefslogtreecommitdiff
path: root/game/background/AquariumScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/background/AquariumScript.h')
-rw-r--r--game/background/AquariumScript.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/game/background/AquariumScript.h b/game/background/AquariumScript.h
new file mode 100644
index 0000000..b068628
--- /dev/null
+++ b/game/background/AquariumScript.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <crepe/api/Script.h>
+
+class AquariumScript : public crepe::Script {
+public:
+ void fixed_update(crepe::duration_t dt);
+
+private:
+ float start_x = 10200;
+ const float lenght = 3000;
+};