diff options
author | Max-001 <80035972+Max-001@users.noreply.github.com> | 2025-01-10 14:13:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-10 14:13:46 +0100 |
commit | bb2db93bfb8dd7e080d2708548eae660e6b33913 (patch) | |
tree | 32a54bc4469cb894aa009736e070bdc382e48e76 /game/menus/shop/ShopLoadScript.h | |
parent | d20b25828b53af170a6534263e8de114e7fac121 (diff) | |
parent | 8d46ad5a20d1aa5b784291ae323e38d1e0d59351 (diff) |
Merge pull request #122 from lonkaars/jaro/game
Jaro/game
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(); +}; |