Working on scene and project serialisation

Added scene/project save and load to main menu, added file dialogs for opening and saving scene/project
This commit is contained in:
2022-11-05 12:50:01 +01:00
parent 41d5b87c7b
commit c8ebc0fa17
9 changed files with 336 additions and 60 deletions

View File

@ -6,7 +6,8 @@ buildmessage "Building editor ..."
links{
"YoggieEngine",
"ImGuizmo",
"yaml-cpp"
"yaml-cpp",
"nfd.lib"
}
includedirs{
@ -25,18 +26,18 @@ includedirs{
incfolder["imguizmo"],
incfolder["entt"],
incfolder["yamlcpp"],
incfolder["nativefiledialog"],
"./include"
}
libdirs {
staticlib["yoggie"]
staticlib["yoggie"],
staticlib["nativefiledialog"]
}
files {
"./src/*.h",
"./src/*.cpp"
}
include("../yaml-cpp")