From 296a184b4a102a5224a0c7cb209b111cbbc482a6 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Thu, 22 Jun 2023 22:58:22 +0100 Subject: Game over screen Also move private defines to the game module. --- src/game.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index a13bdb9..3058018 100644 --- a/src/game.h +++ b/src/game.h @@ -1,17 +1,6 @@ #ifndef _GAME_H #define _GAME_H -#define GAME_LIVES_START 3 -#define GAME_LIVES_MAX 9 -#define GAME_TIME_MAX 60 - -#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(); void add_score(uint8_t v); uint32_t get_hiscore(); -- cgit v1.2.3