diff options
Diffstat (limited to 'src/example/ForestParallaxScript.h')
-rw-r--r-- | src/example/ForestParallaxScript.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/example/ForestParallaxScript.h b/src/example/ForestParallaxScript.h new file mode 100644 index 0000000..39b7ecb --- /dev/null +++ b/src/example/ForestParallaxScript.h @@ -0,0 +1,15 @@ +#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 update(); + +private: + const float begin_x; + const float end_x; + const std::string name; +}; |