diff options
Diffstat (limited to 'game/player/PlayerEndScript.h')
-rw-r--r-- | game/player/PlayerEndScript.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/game/player/PlayerEndScript.h b/game/player/PlayerEndScript.h new file mode 100644 index 0000000..03ea8a9 --- /dev/null +++ b/game/player/PlayerEndScript.h @@ -0,0 +1,14 @@ +#pragma once + +#include <crepe/api/Script.h> + +class PlayerEndScript : public crepe::Script { +public: + void init(); + +private: + bool on_collision(const crepe::CollisionEvent & ev); + +private: + int jump = 0; +}; |