diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2023-03-20 19:11:41 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2023-03-20 19:11:41 +0100 |
commit | 72295b9df9c0de9e585cce3f41437965eb0390cb (patch) | |
tree | c4ec60c1773b654edd2177b5082d5d7d584b2ea4 /src/GameLoop/shop.h | |
parent | e79c36460f400991caa82598499c0ea7c37ebb90 (diff) |
demo version
Diffstat (limited to 'src/GameLoop/shop.h')
-rw-r--r-- | src/GameLoop/shop.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/GameLoop/shop.h b/src/GameLoop/shop.h new file mode 100644 index 0000000..4014f58 --- /dev/null +++ b/src/GameLoop/shop.h @@ -0,0 +1,16 @@ +#include "input.h" +#include "engine/draw_screen.h" + + + +#include <stdint.h> +#include <stdbool.h> + +typedef enum { + hh_e_STATE_SHOW, + hh_e_STATE_Input, + hh_e_STATE_END +} hh_e_ShopStates; + + +bool hh_show_Shop(); |