aboutsummaryrefslogtreecommitdiff
path: root/src/example/ForestParallaxScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/example/ForestParallaxScript.h')
-rw-r--r--src/example/ForestParallaxScript.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/example/ForestParallaxScript.h b/src/example/ForestParallaxScript.h
deleted file mode 100644
index a65a684..0000000
--- a/src/example/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;
-};