aboutsummaryrefslogtreecommitdiff
path: root/src/howToPlayScreen.c
blob: abd7a01bed2dc099b8d5c7ba5d8afbe388463267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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) {
}