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/Shopconfig.h | |
parent | 296c7b8becc04fa0eeef7c732e5c62a26de45570 (diff) |
added shop functionality
Diffstat (limited to 'game/menus/shop/Shopconfig.h')
-rw-r--r-- | game/menus/shop/Shopconfig.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/game/menus/shop/Shopconfig.h b/game/menus/shop/Shopconfig.h new file mode 100644 index 0000000..04c8c5c --- /dev/null +++ b/game/menus/shop/Shopconfig.h @@ -0,0 +1,16 @@ +#pragma once +#include "api/Event.h" + +//tags +static constexpr const char * BUY_BULLET = "BUY_BULLET"; +static constexpr const char * SELECT_BULLET = "SELECT_BULLET"; +static constexpr const char * BUY_BUBBLE = "BUY_BUBBLE"; +static constexpr const char * SELECT_BUBBLE = "SELECT_BUBBLE"; + + +//save_data +static constexpr const char * BUY_BULLET_SAVE = "BUY_BULLET_SAVE"; +static constexpr const char * BUY_BUBBLE_SAVE = "BUY_BUBBLE_SAVE"; + + +struct ShopUpdate : public crepe::Event {}; |