ship layout blueprints
This commit is contained in:
@@ -8,6 +8,7 @@ SET(HDRS
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Scrap.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Ship.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ShipLayout.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ShipLayoutBlueprint.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ShipSystem.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ScrapSystem.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/WaveSystem.h
|
||||
|
||||
15
src/lib/sim/ShipLayoutBlueprint.h
Normal file
15
src/lib/sim/ShipLayoutBlueprint.h
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user