diff options
author | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-07 14:42:11 +0100 |
---|---|---|
committer | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-07 14:42:11 +0100 |
commit | f31bd86ae5d7df21b788a273d4f2e530136ec184 (patch) | |
tree | c4ef3a0f89174bb7114889d666e382b6aaddfbfa /game/workers/PanicFromPlayerScript.h | |
parent | 8e537f4779a4bfdcd48d9387ed8a058df210b272 (diff) |
Added Script suffix
Diffstat (limited to 'game/workers/PanicFromPlayerScript.h')
-rw-r--r-- | game/workers/PanicFromPlayerScript.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/game/workers/PanicFromPlayerScript.h b/game/workers/PanicFromPlayerScript.h new file mode 100644 index 0000000..d173e89 --- /dev/null +++ b/game/workers/PanicFromPlayerScript.h @@ -0,0 +1,8 @@ +#pragma once + +#include <crepe/api/Script.h> + +class PanicFromPlayerScript : public crepe::Script { +public: + void fixed_update(crepe::duration_t dt); +}; |