aboutsummaryrefslogtreecommitdiff
path: root/game/workers/WorkerScript.h
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2025-01-07 13:21:09 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2025-01-07 13:21:09 +0100
commit80fc064c77bb61d9b329b58532c9cacd99038e0a (patch)
tree35f3a52350294801f8bcee2b66befba5df2ec695 /game/workers/WorkerScript.h
parenta2d9f875a219d6d1c53784a307b4915cc4e1ee14 (diff)
First setup for NPCs
Diffstat (limited to 'game/workers/WorkerScript.h')
-rw-r--r--game/workers/WorkerScript.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/game/workers/WorkerScript.h b/game/workers/WorkerScript.h
new file mode 100644
index 0000000..ae4a6c7
--- /dev/null
+++ b/game/workers/WorkerScript.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include <crepe/api/Script.h>
+
+class WorkerScript : public crepe::Script {
+public:
+ void fixed_update(crepe::duration_t dt);
+};