From 07e829e591394fa182e75ecab86051f1fb850ce7 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Thu, 15 Jun 2023 22:35:39 +0100 Subject: Started with the game Added hud (WIP) --- src/game.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/game.h (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h new file mode 100644 index 0000000..e8c270e --- /dev/null +++ b/src/game.h @@ -0,0 +1,16 @@ +#ifndef _GAME_H +#define _GAME_H + +#define GAME_LIVES_START 3 +#define GAME_LIVES_MAX 9 + +#define HUD_CLEAN 0 +#define HUD_LIVES 1 +#define HUD_SCORE 2 +#define HUD_STAGE 4 +#define HUD_TIME 8 +#define HUD_ALL 255 + +void run_game(); + +#endif /* _GAME_H */ -- cgit v1.2.3