summaryrefslogtreecommitdiff
path: root/src/scenes/mainMenu.c
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-07-08 21:12:00 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-07-08 21:12:00 +0500
commitd9b6fb98ab3f53598d79a183195964b0306c91c7 (patch)
tree852ad366fc2a8f393f6868f61d56443d09c51071 /src/scenes/mainMenu.c
parent586942c66f7d4aa71f0b60bb5de9ae19266f0cad (diff)
keyboard comm
Diffstat (limited to 'src/scenes/mainMenu.c')
-rw-r--r--src/scenes/mainMenu.c3
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;
}