aboutsummaryrefslogtreecommitdiff
path: root/src/example/PlayerScript.h
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-12-19 11:09:26 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-12-19 11:09:26 +0100
commit067aa2536f9f43d07e22696c618258a26ae928b3 (patch)
treee9e641ab28cfd8163acee1596d9d07dd339d969a /src/example/PlayerScript.h
parent1e6aaf13f4ecdc67e75eb26bcd8a6f0059c5cfe9 (diff)
Moved PlayerScript to seperate file
Diffstat (limited to 'src/example/PlayerScript.h')
-rw-r--r--src/example/PlayerScript.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/example/PlayerScript.h b/src/example/PlayerScript.h
new file mode 100644
index 0000000..254dd41
--- /dev/null
+++ b/src/example/PlayerScript.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include <crepe/api/Script.h>
+
+class PlayerScript : public crepe::Script {
+public:
+ void update();
+};