From a1de326ac5d89cbf9555c9a0a9a662af35c6dcf7 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Thu, 15 Jun 2023 22:58:30 +0100 Subject: Implement a countdown clock in the timer Updated the HUD to show the time. --- src/game.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index e8c270e..ff90121 100644 --- a/src/game.h +++ b/src/game.h @@ -1,8 +1,9 @@ #ifndef _GAME_H #define _GAME_H -#define GAME_LIVES_START 3 -#define GAME_LIVES_MAX 9 +#define GAME_LIVES_START 3 +#define GAME_LIVES_MAX 9 +#define GAME_TIME_MAX 60 #define HUD_CLEAN 0 #define HUD_LIVES 1 -- cgit v1.2.3