blob: f51cc669b69dd342ce5dc8c96acd18026d7b3a95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <stdint.h>
#include <stdbool.h>
typedef enum {
hh_e_STATE_SHOW,
hh_e_STATE_Input,
hh_e_STATE_END
} hh_e_screenStates;
bool hh_show_startingScreen();
|