diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-19 11:13:31 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-19 11:13:31 +0100 |
commit | edd5fd83f4a5337ba06955bd59a136f7eb699234 (patch) | |
tree | 34df11d1c15816840a0542e3789d7c7eae92fdd4 /src/example/ForestParallaxScript.h | |
parent | 067aa2536f9f43d07e22696c618258a26ae928b3 (diff) |
Moved ForestParallaxScript to seperate file
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; +}; |