diff options
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 {}; |