aboutsummaryrefslogtreecommitdiff
path: root/src/howToPlayScreen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/howToPlayScreen.c')
-rw-r--r--src/howToPlayScreen.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/howToPlayScreen.c b/src/howToPlayScreen.c
new file mode 100644
index 0000000..abd7a01
--- /dev/null
+++ b/src/howToPlayScreen.c
@@ -0,0 +1,13 @@
+#include "howToPlayScreen.h"
+#include "game.h"
+
+void initHowToPlayScreen(Game * game) {
+}
+
+void updateHowToPlayScreen(Game * game) {
+ ClearBackground(RAYWHITE);
+ DrawText("hi", 100, 100, 20, BLACK);
+}
+
+void resizeHowToPlayScreen(Game * game, HowToPlayScreen * howToPlayScreen) {
+}