diff options
Diffstat (limited to 'src/example/PlayerScript.h')
-rw-r--r-- | src/example/PlayerScript.h | 8 |
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(); +}; |