diff options
author | quou <quou@disroot.org> | 2023-05-07 21:30:46 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2023-05-07 21:30:46 +1000 |
commit | ee2ecd8da2b66e0a819f59491ac176fd3efaa92a (patch) | |
tree | ede346c6aadc38e986002ca17991156ed65d42d8 /game.h | |
parent | 19760d58ea09b9c345a0c845e89143ddcc5d6507 (diff) |
Improve the win screen.
Diffstat (limited to 'game.h')
-rw-r--r-- | game.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -8,7 +8,8 @@ typedef enum { game_state_menu = 0, game_state_game, game_state_credits, - game_state_dead + game_state_dead, + game_state_win } Game_State; typedef struct Game Game; @@ -26,6 +27,7 @@ struct Game { World world; int wave_timer, want_next, display_wave_text; + int wait_timer, wait_timer2, fading, fade_timer, fade_frame; }; void game_init(Game* game, Game_State state); |