aboutsummaryrefslogtreecommitdiff
path: root/src/GameLoop/shop.h
diff options
context:
space:
mode:
authorUnavailableDev <69792062+UnavailableDev@users.noreply.github.com>2023-04-03 18:03:36 +0200
committerGitHub <noreply@github.com>2023-04-03 18:03:36 +0200
commitf47d082d2fb2d5e5b5a4d3e685d8d093699938d7 (patch)
treec1ccb7a2dcda405df3ab850f66927e9b3d12c7c3 /src/GameLoop/shop.h
parent68862666219c07ee62c9e59dd6866c1c7b26cc00 (diff)
parent9166352dfabdb0732d222be5d4ed10953f12a872 (diff)
Merge pull request #50 from heavydemon21/dev
player controller update
Diffstat (limited to 'src/GameLoop/shop.h')
-rw-r--r--src/GameLoop/shop.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/GameLoop/shop.h b/src/GameLoop/shop.h
deleted file mode 100644
index 5cd6b53..0000000
--- a/src/GameLoop/shop.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#include "input.h"
-#include "engine/draw_screen.h"
-
-
-
-#include <stdint.h>
-#include <stdbool.h>
-
-typedef enum {
- hh_e_shop_init,
- hh_e_shop_main,
- hh_e_shop_end
-} hh_e_ShopStates;
-
-/** @brief amount of upgrade types */
-#define HH_SHOP_UPG_COUNT 2
-/** @brief count of visible upgrades in shop */
-#define HH_SHOP_UPG_DISPLAY 4
-/** @brief all possible upgrades */
-typedef enum {
- hh_e_UPG_JUMP,
- hh_e_UPG_HEALTH
-} hh_e_upgrades;
-
-/** @brief init */
-void hh_shop_init(hh_e_upgrades* in);
-/** @brief deals with displayed entity rendering */
-void hh_shop_display(uint8_t selected, hh_e_upgrades* upgrades);
-/** @brief moves 'cursor' through selection field */
-void hh_shift_selected(uint8_t* pos, bool dir, uint8_t min, uint8_t max);
-
-bool hh_show_Shop();