Files
dota_factory/src/lib/sim/ShipLayoutBlueprint.h
2026-05-19 21:41:19 +02:00

16 lines
211 B
C++

#pragma once
#include <string>
#include <vector>
#include <QString>
#include "ShipLayout.h"
struct ShipLayoutBlueprint
{
QString name;
std::string shipType;
std::vector<PlacedModule> modules;
};