diff options
author | Max-001 <maxsmits21@kpnmail.nl> | 2024-12-21 11:19:52 +0100 |
---|---|---|
committer | Max-001 <maxsmits21@kpnmail.nl> | 2024-12-21 11:19:52 +0100 |
commit | 999e1b928aa632e80521651f14013c267af604dc (patch) | |
tree | dbb30be31d332cbc53dcbb9ab498856c80162e8c /game/background/ForestParallaxScript.h | |
parent | 0ba89eff9283d5f9f59fa763a19f4616f1c66d74 (diff) |
Moved file to sub directory
Diffstat (limited to 'game/background/ForestParallaxScript.h')
-rw-r--r-- | game/background/ForestParallaxScript.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/game/background/ForestParallaxScript.h b/game/background/ForestParallaxScript.h new file mode 100644 index 0000000..a65a684 --- /dev/null +++ b/game/background/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 fixed_update(crepe::duration_t dt); + +private: + const float begin_x; + const float end_x; + const std::string name; +}; |