From fd0c7d4a5a23f6e8bfbafbed7d9bde319607451d Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Fri, 22 Dec 2023 01:08:20 -0700 Subject: Started working on the how to play screen --- src/howToPlayScreen.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/howToPlayScreen.c (limited to 'src/howToPlayScreen.c') 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) { +} -- cgit v1.2.3