From fca307d6af08116f675e0d04e5ace2e353ec718c Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Fri, 10 May 2024 10:33:33 -0600 Subject: Better stone count for shooter game --- src/gameScreen.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/gameScreen.h') diff --git a/src/gameScreen.h b/src/gameScreen.h index a745051..e798569 100644 --- a/src/gameScreen.h +++ b/src/gameScreen.h @@ -7,7 +7,7 @@ #ifndef GAME_SCREEN_H #define GAME_SCREEN_H -#define RUN_SHOOTER_GAME_EVERY 100 +#define RUN_SHOOTER_GAME_COUNT_START 500 typedef enum GamePlayPlace { CLICKY_DESKTOP_PLACE, @@ -30,6 +30,8 @@ typedef struct GameScreen { Shop shop; ToolId tool; + + int nextShootingStoneCount; } GameScreen; void initGameScreen(GameScreen* gameScreen, Game* game); -- cgit v1.2.3