diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-11 17:27:31 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-11 17:27:31 +0000 |
commit | 57a682c295eb665dfa935031446df255471f8edd (patch) | |
tree | 43f32d4064e1ed0d1b94129f36fb4f15f52f7716 /src/gameScreen.h | |
parent | 372297622a2da74a31c54e44283c4d2333ebf53f (diff) | |
download | PenguinYippies-57a682c295eb665dfa935031446df255471f8edd.tar.gz PenguinYippies-57a682c295eb665dfa935031446df255471f8edd.tar.bz2 PenguinYippies-57a682c295eb665dfa935031446df255471f8edd.zip |
Moved things around a tiny ittle bit
Diffstat (limited to 'src/gameScreen.h')
-rw-r--r-- | src/gameScreen.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gameScreen.h b/src/gameScreen.h index 003f66b..5c9953d 100644 --- a/src/gameScreen.h +++ b/src/gameScreen.h @@ -2,6 +2,7 @@ #include "animation.h" #include "ui.h" #include "clicky.h" +#include "shop.h" #ifndef GAME_SCREEN_H #define GAME_SCREEN_H @@ -23,6 +24,8 @@ typedef struct GameScreen { TexturedButton achievementsButton; TexturedButton rebirthButton; TexturedButton statisticsButton; + + Shop shop; } GameScreen; void initGameScreen(GameScreen* gameScreen, Game* game); |