summaryrefslogtreecommitdiff
path: root/src/scenes/mainMenu.c
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-07-07 15:24:11 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-07-07 15:24:11 +0500
commited2a75816a34aee3026cb07c85fb3be11decbf4d (patch)
tree47bf13dc6eab7576794de67bad92547bcdb66e3a /src/scenes/mainMenu.c
parent5d010fb632964dcf1191f548a07eb1a0dcb83c41 (diff)
simple scene logic + raygui import
Diffstat (limited to 'src/scenes/mainMenu.c')
-rw-r--r--src/scenes/mainMenu.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/scenes/mainMenu.c b/src/scenes/mainMenu.c
new file mode 100644
index 0000000..07ba34d
--- /dev/null
+++ b/src/scenes/mainMenu.c
@@ -0,0 +1,9 @@
+#include <raylib.h>
+
+void MainMenuUpdate() {
+}
+
+void MainMenuDraw() {
+ ClearBackground(SKYBLUE);
+ DrawText("MAIN MENU", 10, 10, 30, BLACK);
+}