diff options
Diffstat (limited to 'src/gameScreen.h')
-rw-r--r-- | src/gameScreen.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gameScreen.h b/src/gameScreen.h index 6cf95de..5bcd288 100644 --- a/src/gameScreen.h +++ b/src/gameScreen.h @@ -16,6 +16,8 @@ #define GAME_SCREEN_SKY_BOX_SIZE 1020.0 +#define GAME_SCREEN_SHOW_GAME_OVER_FOR 2.0 + // Gui stuff and shit. typedef struct GameScreen { Vector2 infoTextPosition; @@ -30,6 +32,9 @@ typedef struct GameScreen { double timeAtLevelComplete; int lastLevel; + bool gameOver; + double gameOverAt; + RenderTexture zoomViewTexture; Vector2 zoomViewPosition; |