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