aboutsummaryrefslogtreecommitdiff
path: root/src/example/StartGameScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/example/StartGameScript.h')
-rw-r--r--src/example/StartGameScript.h12
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..ad62e1a
--- /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 fixed_update(crepe::duration_t dt);
+
+private:
+ bool created_hole = false;
+ bool took_jetpack = false;
+};