9 lines
203 B
C#
9 lines
203 B
C#
namespace SpaceGame.Simulation.Api.Simulation;
|
|
|
|
public sealed class WorldGenerationOptions
|
|
{
|
|
public int TargetSystemCount { get; init; } = 160;
|
|
|
|
public bool IncludeSolSystem { get; init; } = true;
|
|
}
|