feat? add basich ah scene loading

This commit is contained in:
2026-07-25 21:46:01 +02:00
parent aa5c497f29
commit 4b6f773c0c
18 changed files with 523 additions and 73 deletions
@@ -0,0 +1,14 @@
#ifndef DESTRUM_SCENESERIALIZER_H
#define DESTRUM_SCENESERIALIZER_H
#include <filesystem>
class Scene;
class SceneSerializer final {
public:
static bool Save(Scene& scene, const std::filesystem::path& path);
static bool Load(Scene& scene, const std::filesystem::path& path);
};
#endif //DESTRUM_SCENESERIALIZER_H