aboutsummaryrefslogtreecommitdiff
path: root/src/GameLoop/game_over.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/GameLoop/game_over.h')
-rw-r--r--src/GameLoop/game_over.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/GameLoop/game_over.h b/src/GameLoop/game_over.h
new file mode 100644
index 0000000..0d40b6c
--- /dev/null
+++ b/src/GameLoop/game_over.h
@@ -0,0 +1,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;
+
+
+void hh_game_over(hh_e_GameState*);