aboutsummaryrefslogtreecommitdiff
path: root/game/ForestParallaxScript.h
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2024-12-21 11:19:52 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2024-12-21 11:19:52 +0100
commit999e1b928aa632e80521651f14013c267af604dc (patch)
treedbb30be31d332cbc53dcbb9ab498856c80162e8c /game/ForestParallaxScript.h
parent0ba89eff9283d5f9f59fa763a19f4616f1c66d74 (diff)
Moved file to sub directory
Diffstat (limited to 'game/ForestParallaxScript.h')
-rw-r--r--game/ForestParallaxScript.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/game/ForestParallaxScript.h b/game/ForestParallaxScript.h
deleted file mode 100644
index a65a684..0000000
--- a/game/ForestParallaxScript.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#pragma once
-
-#include <crepe/api/Script.h>
-
-class ForestParallaxScript : public crepe::Script {
-public:
- ForestParallaxScript(float begin_x, float end_x, std::string unique_bg_name);
-
- void fixed_update(crepe::duration_t dt);
-
-private:
- const float begin_x;
- const float end_x;
- const std::string name;
-};