aboutsummaryrefslogtreecommitdiff
path: root/game/player/PlayerScript.h
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2024-12-24 09:45:44 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2024-12-24 09:45:44 +0100
commitd15de7503f2f7320e23863a11e97fcd401bc2eeb (patch)
tree08f318d3a36dedd9851be43e7aae22a8b2f603a9 /game/player/PlayerScript.h
parent61148c757a1f742ff09e40e5347e74e638c7371c (diff)
Moved Player files to seperate folder
Diffstat (limited to 'game/player/PlayerScript.h')
-rw-r--r--game/player/PlayerScript.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/game/player/PlayerScript.h b/game/player/PlayerScript.h
new file mode 100644
index 0000000..84c4f7f
--- /dev/null
+++ b/game/player/PlayerScript.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include <crepe/api/Script.h>
+
+class PlayerScript : public crepe::Script {
+public:
+ void fixed_update(crepe::duration_t dt);
+};