aboutsummaryrefslogtreecommitdiff
path: root/src/screens/howToPlayScreen.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-22 02:06:49 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-22 02:06:49 -0700
commit18c26edd6bae8ce5bd26e0ab632086725f492871 (patch)
tree9835eaaf1c06be3f313ca92aa3f1dcb8577b56ad /src/screens/howToPlayScreen.h
parent35ccb272571efd684f050e579092ccb290a39c89 (diff)
Moved the screens to a better place
Diffstat (limited to 'src/screens/howToPlayScreen.h')
-rw-r--r--src/screens/howToPlayScreen.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/screens/howToPlayScreen.h b/src/screens/howToPlayScreen.h
new file mode 100644
index 0000000..ff083e3
--- /dev/null
+++ b/src/screens/howToPlayScreen.h
@@ -0,0 +1,15 @@
+#include "gameCommon.h"
+
+#ifndef HOW_TO_PLAY_SCREEN_H
+#define HOW_TO_PLAY_SCREEN_H
+
+typedef struct HowToPlayScreen {
+ Rectangle goBackButton;
+ Rectangle infoText;
+} HowToPlayScreen;
+
+void initHowToPlayScreen(Game * game);
+void updateHowToPlayScreen(Game * game);
+void resizeHowToPlayScreen(Game * game, HowToPlayScreen * howToPlayScreen);
+
+#endif