implement save and load blueprints

This commit is contained in:
2026-04-28 21:31:29 +02:00
parent 550f46009f
commit ced4ab5fe3
5 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <string>
#include <vector>
#include "Blueprint.h"
namespace BlueprintSerializer
{
std::string serialize(const std::vector<Blueprint>& blueprints);
std::vector<Blueprint> deserialize(const std::string& tomlContent);
} // namespace BlueprintSerializer