aboutsummaryrefslogtreecommitdiff
path: root/src/howToPlayScreen.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/howToPlayScreen.h
parent123e581f76d58df67bcf041f510c529601dae502 (diff)
Started working on the how to play screen
Diffstat (limited to 'src/howToPlayScreen.h')
-rw-r--r--src/howToPlayScreen.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/howToPlayScreen.h b/src/howToPlayScreen.h
new file mode 100644
index 0000000..86b720d
--- /dev/null
+++ b/src/howToPlayScreen.h
@@ -0,0 +1,13 @@
+#include "gameCommon.h"
+
+#ifndef HOW_TO_PLAY_SCREEN_H
+#define HOW_TO_PLAY_SCREEN_H
+
+typedef struct HowToPlayScreen {
+} HowToPlayScreen;
+
+void initHowToPlayScreen(Game * game);
+void updateHowToPlayScreen(Game * game);
+void resizeHowToPlayScreen(Game * game, HowToPlayScreen * howToPlayScreen);
+
+#endif