8 lines
278 B
C#
8 lines
278 B
C#
namespace SpaceGame.Api.Universe.Scenario;
|
|
|
|
public sealed record WorldBuildTopology(
|
|
IReadOnlyList<SolarSystemDefinition> Systems,
|
|
IReadOnlyList<SystemRuntime> SystemRuntimes,
|
|
IReadOnlyDictionary<string, SystemRuntime> SystemsById,
|
|
ScenarioSpatialLayout SpatialLayout);
|