diff options
| author | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-08 21:12:00 +0500 |
|---|---|---|
| committer | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-08 21:12:00 +0500 |
| commit | d9b6fb98ab3f53598d79a183195964b0306c91c7 (patch) | |
| tree | 852ad366fc2a8f393f6868f61d56443d09c51071 /src/scenes/mainMenu.c | |
| parent | 586942c66f7d4aa71f0b60bb5de9ae19266f0cad (diff) | |
keyboard comm
Diffstat (limited to 'src/scenes/mainMenu.c')
| -rw-r--r-- | src/scenes/mainMenu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scenes/mainMenu.c b/src/scenes/mainMenu.c index 31b52c0..7732f6d 100644 --- a/src/scenes/mainMenu.c +++ b/src/scenes/mainMenu.c @@ -1,13 +1,14 @@ #include <raylib.h> #include <stdlib.h> #include "scenes.h" +#include "../resources/resources.h" bool updateMainMenu(void *self) { return true; } bool drawMainMenu(void *self) { - ClearBackground(SKYBLUE); + DrawBackground(); DrawText("Main menu", 0, 0, 100, BLACK); return true; } |
