diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2025-01-09 21:14:35 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2025-01-09 21:14:35 +0100 |
commit | f6683fa71fa670cfbe6aa6233fafb869295da11a (patch) | |
tree | a46ee1d8856b5f0e0298abbab9c92ba21509d830 /game/menus/shop/ShopLoadScript.h | |
parent | 296c7b8becc04fa0eeef7c732e5c62a26de45570 (diff) |
added shop functionality
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(); +}; |