diff options
Diffstat (limited to 'src/example/StartGameScript.h')
-rw-r--r-- | src/example/StartGameScript.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/example/StartGameScript.h b/src/example/StartGameScript.h new file mode 100644 index 0000000..f3534d0 --- /dev/null +++ b/src/example/StartGameScript.h @@ -0,0 +1,12 @@ +#pragma once + +#include <crepe/api/Script.h> + +class StartGameScript : public crepe::Script { +public: + void update(); + +private: + bool created_hole = false; + bool took_jetpack = false; +}; |