diff options
author | NielsCoding <48092678+heavydemon21@users.noreply.github.com> | 2023-04-02 20:48:06 +0200 |
---|---|---|
committer | NielsCoding <48092678+heavydemon21@users.noreply.github.com> | 2023-04-02 20:48:06 +0200 |
commit | e987d23d915942ec4a3910b9cc2729f1b21361a9 (patch) | |
tree | c74b48322acb426a205d5cc9a31351c902dfbb65 /src/GameLoop/shop.c | |
parent | 552dcc17db2b98287ba1b480c2e70759cd94d81f (diff) |
snake case/background
Diffstat (limited to 'src/GameLoop/shop.c')
-rw-r--r-- | src/GameLoop/shop.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/GameLoop/shop.c b/src/GameLoop/shop.c deleted file mode 100644 index 8e6dc71..0000000 --- a/src/GameLoop/shop.c +++ /dev/null @@ -1,30 +0,0 @@ -#include "shop.h" - - -void hh_Shop(hh_e_GameState* hh_game_state){ - static hh_e_ShopStates hh_e_Shop = hh_e_shop_SHOW; - - switch (hh_e_Shop) - { - case hh_e_shop_SHOW: - hh_clear_screen(); - hh_clear_sprite(); - // TODO: make function to show shop - //hh_setup_shop(); - hh_e_Shop = hh_e_shop_Input; - break; - case hh_e_shop_Input: - // TODO: make it so that you can choose between shop - if(g_hh_controller_p1.button_primary){ - hh_e_Shop = hh_e_shop_END; - } - break; - case hh_e_shop_END: - hh_e_Shop = hh_e_shop_SHOW; - *hh_game_state = hh_e_STATE_Gameplay; - break; - default: - hh_e_Shop = hh_e_shop_SHOW; - break; - } -} |