diff options
author | UnavailableDev <ggwildplay@gmail.com> | 2023-03-22 10:29:24 +0100 |
---|---|---|
committer | UnavailableDev <ggwildplay@gmail.com> | 2023-03-22 10:29:24 +0100 |
commit | cd9f96be0d1ca49f269d8dc7c801479ef382d21b (patch) | |
tree | d3768b4d9a8ef8cb1c6ee5e6dcea785adb902d5c /src/GameLoop/shop.h | |
parent | 439be80c80498586a299c28ce1be3ea765b414a9 (diff) | |
parent | 746b9a43b745e6f7cbac4cbe529d3f5f719d1eea (diff) |
Merge branch 'dev' of https://github.com/heavydemon21/avans-arcade into game-engine
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(); |