diff options
Diffstat (limited to 'game/menus/shop/ShopLoadScript.h')
-rw-r--r-- | game/menus/shop/ShopLoadScript.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/game/menus/shop/ShopLoadScript.h b/game/menus/shop/ShopLoadScript.h new file mode 100644 index 0000000..b17bf1c --- /dev/null +++ b/game/menus/shop/ShopLoadScript.h @@ -0,0 +1,10 @@ +#pragma once + +#include <crepe/api/Script.h> +#include <crepe/manager/SaveManager.h> + +class ShopLoadScript : public crepe::Script { +public: + void init() override; + bool update(); +}; |