diff options
author | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-07 14:34:12 +0100 |
---|---|---|
committer | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-07 14:34:12 +0100 |
commit | 1f0edff951e7580163d8c987d4a021b24d45e9f1 (patch) | |
tree | a4ffd4334f24b2d72fdd44daef4294f1a2fbf234 /game/workers/PanicFromPlayer.h | |
parent | 80fc064c77bb61d9b329b58532c9cacd99038e0a (diff) |
Added panic from player
Diffstat (limited to 'game/workers/PanicFromPlayer.h')
-rw-r--r-- | game/workers/PanicFromPlayer.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/game/workers/PanicFromPlayer.h b/game/workers/PanicFromPlayer.h new file mode 100644 index 0000000..804df5c --- /dev/null +++ b/game/workers/PanicFromPlayer.h @@ -0,0 +1,8 @@ +#pragma once + +#include <crepe/api/Script.h> + +class PanicFromPlayer : public crepe::Script { +public: + void fixed_update(crepe::duration_t dt); +}; |