aboutsummaryrefslogtreecommitdiff
path: root/src/mainMenu.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-22 01:08:20 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-22 01:08:20 -0700
commitfd0c7d4a5a23f6e8bfbafbed7d9bde319607451d (patch)
treed781d63da06d55ab23440e2a3baf919df2e4b826 /src/mainMenu.h
parent123e581f76d58df67bcf041f510c529601dae502 (diff)
Started working on the how to play screen
Diffstat (limited to 'src/mainMenu.h')
-rw-r--r--src/mainMenu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainMenu.h b/src/mainMenu.h
index 10ce855..c8bae78 100644
--- a/src/mainMenu.h
+++ b/src/mainMenu.h
@@ -8,10 +8,11 @@ typedef struct MainMenu {
Texture2D * logoTexture;
Rectangle startButton;
+ Rectangle howToPlayButton;
} MainMenu;
void initMainMenu(Game * game);
void updateMainMenu(Game * game);
-void resizeMainMenu(Game * game);
+void resizeMainMenu(Game * game, MainMenu * mainMenu);
#endif