From 8ff25c1e8951304ff5c125e05a8fa044a198ef72 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Tue, 20 Feb 2024 20:18:32 -0700 Subject: More buttons --- src/gameScreen.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/gameScreen.h') 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); -- cgit v1.2.3