aboutsummaryrefslogtreecommitdiff
path: root/game/ForestParallaxScript.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-22 11:53:15 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-22 11:53:15 +0100
commit794facac7a7a1886bc2e0fea4c19c1106d6b458e (patch)
tree9518ed7903cf1b38af293cfd60146376f1016504 /game/ForestParallaxScript.h
parentf5d2ef9a5a335509f6ade05470938f0fbbbb74ad (diff)
parente7599e648ea24d5e8a27bd9f4f162ef1a7c53d21 (diff)
Merge branch 'max/game' of github.com:lonkaars/crepe
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;
-};