diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 02:13:13 -0700 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 02:13:13 -0700 |
commit | ad66d7ade0528829a48ac4426d952ec882ef4329 (patch) | |
tree | a5f2b6b4d74575b4718c84c99c8861d696cb2046 /src/game.h | |
parent | 18c26edd6bae8ce5bd26e0ab632086725f492871 (diff) |
Started working on info screen
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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; |