blob: 35bb780920828a7f2ebabb45a060dc5839dde93f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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();
|