15 lines
325 B
C++
15 lines
325 B
C++
#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
|