diff options
Diffstat (limited to 'game/mainmenu/ShowStartScript.h')
-rw-r--r-- | game/mainmenu/ShowStartScript.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/game/mainmenu/ShowStartScript.h b/game/mainmenu/ShowStartScript.h new file mode 100644 index 0000000..4d8d894 --- /dev/null +++ b/game/mainmenu/ShowStartScript.h @@ -0,0 +1,10 @@ +#pragma once + +#include "ShowScript.h" + +class ShowStartScript : public ShowScript { +public: + void init() override; + void fixed_update(crepe::duration_t dt) override; + const char* get_scene_name() const override; +}; |