From 6570bf598a3b3768fe34827529df5ea0b4b26f0e Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 20 Dec 2024 12:52:15 +0100 Subject: move game files --- game/StartGameScript.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 game/StartGameScript.h (limited to 'game/StartGameScript.h') diff --git a/game/StartGameScript.h b/game/StartGameScript.h new file mode 100644 index 0000000..ad62e1a --- /dev/null +++ b/game/StartGameScript.h @@ -0,0 +1,12 @@ +#pragma once + +#include + +class StartGameScript : public crepe::Script { +public: + void fixed_update(crepe::duration_t dt); + +private: + bool created_hole = false; + bool took_jetpack = false; +}; -- cgit v1.2.3