diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-03-15 21:57:44 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-03-15 21:57:44 +0100 |
commit | 1c0cb0d1cf8c9cb6a11aa404d8c31def1087a586 (patch) | |
tree | 68f58c14fd0e50bfa5fb650a76f22d3cd53c5169 /src/GameLoop | |
parent | 6a70bf52bc2ed5d28b7d08854fabfaee27be3e84 (diff) |
(UNCLEAN) partial merge of #37
Diffstat (limited to 'src/GameLoop')
-rw-r--r-- | src/GameLoop/shop.h | 4 | ||||
-rw-r--r-- | src/GameLoop/startingScreen.h | 8 |
2 files changed, 5 insertions, 7 deletions
diff --git a/src/GameLoop/shop.h b/src/GameLoop/shop.h index 35bb780..39db9fd 100644 --- a/src/GameLoop/shop.h +++ b/src/GameLoop/shop.h @@ -1,7 +1,8 @@ +#pragma once + #include "input.h" #include "engine/draw_screen.h" - #include <stdint.h> #include <stdbool.h> @@ -11,5 +12,4 @@ typedef enum { hh_e_STATE_END } hh_e_ShopStates; - bool hh_show_Shop(); diff --git a/src/GameLoop/startingScreen.h b/src/GameLoop/startingScreen.h index f51cc66..5b4f15a 100644 --- a/src/GameLoop/startingScreen.h +++ b/src/GameLoop/startingScreen.h @@ -1,13 +1,11 @@ #pragma once +#include "GameLoop/shop.h" #include <stdint.h> #include <stdbool.h> -typedef enum { - hh_e_STATE_SHOW, - hh_e_STATE_Input, - hh_e_STATE_END -} hh_e_screenStates; +// TODO: fix naming of enum consts +typedef hh_e_ShopStates hh_e_screenStates; bool hh_show_startingScreen(); |