diff options
author | UnavailableDev <ggwildplay@gmail.com> | 2023-04-03 13:25:33 +0200 |
---|---|---|
committer | UnavailableDev <ggwildplay@gmail.com> | 2023-04-03 13:25:33 +0200 |
commit | 433cbd970797d4472d12c704163719aec7340202 (patch) | |
tree | 85e07b3a5214ce87a517df1e1dbe73709e900211 /src/game_loop/shop.h | |
parent | 68862666219c07ee62c9e59dd6866c1c7b26cc00 (diff) |
shop selections done
Diffstat (limited to 'src/game_loop/shop.h')
-rw-r--r-- | src/game_loop/shop.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game_loop/shop.h b/src/game_loop/shop.h index b0ad5e4..642bcc3 100644 --- a/src/game_loop/shop.h +++ b/src/game_loop/shop.h @@ -15,12 +15,14 @@ typedef enum { } hh_e_shop_states; /** @brief amount of upgrade types */ -#define HH_SHOP_UPG_COUNT 2 +#define HH_SHOP_UPG_COUNT 5 /** @brief count of visible upgrades in shop */ -#define HH_SHOP_UPG_DISPLAY 4 +#define HH_SHOP_UPG_DISPLAY 5 /** @brief all possible upgrades */ typedef enum { hh_e_upg_jump, + hh_e_upg_speed, + hh_e_upg_damage, hh_e_upg_heal, hh_e_upg_max_health, } hh_e_upgrades; |