From ad66d7ade0528829a48ac4426d952ec882ef4329 Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Fri, 22 Dec 2023 02:13:13 -0700 Subject: Started working on info screen --- src/game.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index e93afc9..b3094c2 100644 --- a/src/game.h +++ b/src/game.h @@ -1,6 +1,8 @@ #include "gameCommon.h" #include "screens/mainMenu.h" #include "screens/gameScreen.h" +#include "screens/howToPlayScreen.h" +#include "screens/infoScreen.h" #include "cameras.h" #include "entity.h" #include "assets.h" @@ -9,7 +11,6 @@ #include "bullets.h" #include "levels.h" #include "killLog.h" -#include "screens/howToPlayScreen.h" #ifndef GAME_H #define GAME_H @@ -17,7 +18,8 @@ typedef enum ScreenId { SCREEN_MAIN_MENU, SCREEN_GAME, - HOW_TO_PLAY_SCREEN + HOW_TO_PLAY_SCREEN, + INFO_SCREEN } ScreenId; typedef struct Game { @@ -25,6 +27,7 @@ typedef struct Game { MainMenu mainMenu; GameScreen gameScreen; HowToPlayScreen howToPlayScreen; + InfoScreen infoScreen; Cameras cameras; Assets assets; World world; -- cgit v1.2.3