diff options
Diffstat (limited to 'game/preview/NpcScript.h')
-rw-r--r-- | game/preview/NpcScript.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/game/preview/NpcScript.h b/game/preview/NpcScript.h new file mode 100644 index 0000000..d278f83 --- /dev/null +++ b/game/preview/NpcScript.h @@ -0,0 +1,8 @@ +#pragma once + +#include <crepe/api/Script.h> + +class NpcScript : public crepe::Script { +public: + void fixed_update(crepe::duration_t dt); +}; |