diff options
Diffstat (limited to 'src/example/ForestParallaxScript.h')
-rw-r--r-- | src/example/ForestParallaxScript.h | 15 |
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; -}; |