From 3ab82a95673c8f849b33b50ecff5dd2b50994e53 Mon Sep 17 00:00:00 2001 From: scawful Date: Wed, 24 Sep 2025 13:00:52 -0400 Subject: [PATCH] Add dungeon object parser and room layout files to CMake configuration - Included object_parser.cc and room_layout.cc in the CMakeLists.txt for the Zelda 3 project, enhancing the build configuration to support new dungeon functionalities. - Ensured proper inclusion of necessary source files for improved object handling and room layout management in the dungeon editor. --- src/app/zelda3/zelda3.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/zelda3/zelda3.cmake b/src/app/zelda3/zelda3.cmake index 755f02d3..b41c689b 100644 --- a/src/app/zelda3/zelda3.cmake +++ b/src/app/zelda3/zelda3.cmake @@ -11,5 +11,8 @@ set( app/zelda3/music/tracker.cc app/zelda3/dungeon/room.cc app/zelda3/dungeon/room_object.cc + app/zelda3/dungeon/object_parser.cc app/zelda3/dungeon/object_renderer.cc + app/zelda3/dungeon/object_parser.cc + app/zelda3/dungeon/room_layout.cc ) \ No newline at end of file