aboutsummaryrefslogtreecommitdiff
path: root/game/player/PlayerEndScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/player/PlayerEndScript.h')
-rw-r--r--game/player/PlayerEndScript.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/game/player/PlayerEndScript.h b/game/player/PlayerEndScript.h
new file mode 100644
index 0000000..240ab7c
--- /dev/null
+++ b/game/player/PlayerEndScript.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <crepe/api/Script.h>
+
+class PlayerEndScript : public crepe::Script {
+public:
+ void init();
+ void fixed_update(crepe::duration_t dt);
+
+private:
+ int jump = 0;
+};