summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorphysick <mynameisgennadiy@vk.com>2026-08-29 14:12:24 +0500
committerphysick <mynameisgennadiy@vk.com>2026-08-29 14:12:24 +0500
commitd51d95b66dee211ef654693fb23238d5a234f48c (patch)
treef225999b981091944a1e7442e22fb0a0af2f4003 /src/main.c
parent52ab86e5f55b189aea4198fe4d15a29c4d3c9d57 (diff)
merged branches
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 1366f7b..0c94184 100644
--- a/src/main.c
+++ b/src/main.c
@@ -22,10 +22,15 @@ int main(void) {
return 1;
}
- if (!AddScene(CreatePuzzleScene(puzzle))) {
- printf("Failed to create a puzzle menu\n");
+ if (!AddScene(CreatePuzzleCollectionScene("puzzles"))) {
+ printf("Failed to create a collection scene\n");
return 1;
}
+
+ // if (!AddScene(CreatePuzzleScene(puzzle))) {
+ // printf("Failed to create a puzzle menu\n");
+ // return 1;
+ // }
SetConfigFlags(FLAG_WINDOW_RESIZABLE);
InitWindow(800, 600, "Programming game");