diff options
Diffstat (limited to 'src/game_loop/shop.h')
-rw-r--r-- | src/game_loop/shop.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/game_loop/shop.h b/src/game_loop/shop.h new file mode 100644 index 0000000..7d01b7e --- /dev/null +++ b/src/game_loop/shop.h @@ -0,0 +1,18 @@ +#pragma once + +#include "input.h" +#include "engine/draw_screen.h" +#include "engine/level_const.h" + + +#include <stdint.h> +#include <stdbool.h> + +typedef enum { + hh_e_shop_show, + hh_e_shop_input, + hh_e_shop_end, +} hh_e_shop_states; + + +void hh_shop(hh_e_game_state*); |