diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2023-04-03 09:52:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 09:52:17 +0200 |
commit | cc23564547b736125fe7e7869de277ea4d4455ab (patch) | |
tree | c74b48322acb426a205d5cc9a31351c902dfbb65 /src/GameLoop/shop.c | |
parent | 7f51cd925883bbf958baa289d4d19231667c9eba (diff) | |
parent | e987d23d915942ec4a3910b9cc2729f1b21361a9 (diff) |
Merge pull request #48 from heavydemon21/dev
gameloop/bullet/levels
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 eb6bed5..0000000 --- a/src/GameLoop/shop.c +++ /dev/null @@ -1,30 +0,0 @@ -#include "shop.h" - - -bool hh_show_Shop(){ - static hh_e_ShopStates hh_e_Shop = hh_e_STATE_SHOW; - - switch (hh_e_Shop) - { - case hh_e_STATE_SHOW: - //hh_clear_screen(); - - //hh_setup_shop(); - hh_e_Shop = hh_e_STATE_Input; - return false; - break; - case hh_e_STATE_Input: - if(g_hh_controller_p1.button_primary){ - hh_e_Shop = hh_e_STATE_END; - } - break; - case hh_e_STATE_END: - hh_e_Shop = hh_e_STATE_SHOW; - return true; - break; - default: - hh_e_Shop = hh_e_STATE_SHOW; - break; - } - return false; -} |