ship layout blueprints

This commit is contained in:
2026-05-19 21:01:10 +02:00
parent d08bf5d37b
commit d397b9969a
14 changed files with 511 additions and 7 deletions

View File

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