blob: 47318dfe2bc8465a1639ed791e447ec096346c87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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_game_over_show,
hh_e_game_over_input,
hh_e_game_over_end,
} hh_e_game_over;
/** @brief game loop function game over*/
void hh_game_over(hh_e_game_state*);
|