diff options
Diffstat (limited to 'src/gameScreen.h')
-rw-r--r-- | src/gameScreen.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gameScreen.h b/src/gameScreen.h index 9b4191e..f911edd 100644 --- a/src/gameScreen.h +++ b/src/gameScreen.h @@ -1,9 +1,26 @@ #include "gameCommon.h" +#include "animation.h" +#include "ui.h" #ifndef GAME_SCREEN_H #define GAME_SCREEN_H typedef struct GameScreen { + TexturedButton toGameButton; + TexturedButton toEmperorsEmporiumButton; + + // The little button panel at the bottem. + Animation updateButtonAnimation; + TexturedButton updateButton; + + Animation achievementsButtonAnimation; + TexturedButton achievementsButton; + + Animation rebirthButtonAnimation; + TexturedButton rebirthButton; + + Animation statisticsButtonAnimation; + TexturedButton statisticsButton; } GameScreen; void initGameScreen(GameScreen* gameScreen, Game* game); |