aboutsummaryrefslogtreecommitdiff
path: root/game/MoveCameraManualyScript.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-20 12:52:15 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-20 12:52:15 +0100
commit6570bf598a3b3768fe34827529df5ea0b4b26f0e (patch)
tree863f6520fd13017dffa5e01ce6b0f60770b4c505 /game/MoveCameraManualyScript.h
parent43c6971591aaff8ada4adc1b1b4146b19d43f8e9 (diff)
move game files
Diffstat (limited to 'game/MoveCameraManualyScript.h')
-rw-r--r--game/MoveCameraManualyScript.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/game/MoveCameraManualyScript.h b/game/MoveCameraManualyScript.h
new file mode 100644
index 0000000..5a09055
--- /dev/null
+++ b/game/MoveCameraManualyScript.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include <crepe/api/Script.h>
+
+class MoveCameraManualyScript : public crepe::Script {
+public:
+ void init();
+
+private:
+ bool keypressed(const crepe::KeyPressEvent & event);
+};