diff options
Diffstat (limited to 'src/game_loop/starting_screen.h')
-rw-r--r-- | src/game_loop/starting_screen.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/game_loop/starting_screen.h b/src/game_loop/starting_screen.h new file mode 100644 index 0000000..4228f38 --- /dev/null +++ b/src/game_loop/starting_screen.h @@ -0,0 +1,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_screen_states; + + +bool hh_show_starting_screen(); + |