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,15 @@
#pragma once
#include <string>
#include <vector>
#include <QString>
#include "ShipLayout.h"
struct ShipLayoutBlueprint
{
QString name;
std::string shipType;
std::vector<PlacedModule> modules;
};