diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-05-10 17:06:48 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-05-10 17:06:48 +0000 |
commit | 4f14134623f319ce4afce9b303cc77762524b350 (patch) | |
tree | dac0685893e70239e44dd3eb7cd7a6375216f65d /src/gameScreen.h | |
parent | 1b2a507416bc1fd8fd2bb07f94d8bcd096c19721 (diff) | |
download | PenguinYippies-4f14134623f319ce4afce9b303cc77762524b350.tar.gz PenguinYippies-4f14134623f319ce4afce9b303cc77762524b350.tar.bz2 PenguinYippies-4f14134623f319ce4afce9b303cc77762524b350.zip |
Started working on the gack
Diffstat (limited to 'src/gameScreen.h')
-rw-r--r-- | src/gameScreen.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gameScreen.h b/src/gameScreen.h index e798569..cbfbc75 100644 --- a/src/gameScreen.h +++ b/src/gameScreen.h @@ -3,6 +3,7 @@ #include "ui.h" #include "clicky.h" #include "shop.h" +#include "gack.h" #ifndef GAME_SCREEN_H #define GAME_SCREEN_H @@ -11,7 +12,8 @@ typedef enum GamePlayPlace { CLICKY_DESKTOP_PLACE, - SHOP_PLACE + SHOP_PLACE, + GACK_PLACE } GamePlayPlace; typedef enum ToolId { @@ -26,8 +28,10 @@ typedef struct GameScreen { TexturedButton toGameButton; TexturedButton toEmperorsEmporiumButton; + TexturedButton toGackPenguinButton; Shop shop; + Gack gack; ToolId tool; |