9 lines
243 B
C#
9 lines
243 B
C#
namespace SpaceGame.Api.Universe.Simulation;
|
|
|
|
public sealed class WorldGenerationOptions
|
|
{
|
|
public int TargetSystemCount { get; init; }
|
|
public int AiControllerFactionCount { get; init; }
|
|
public bool GeneratePlayerFaction { get; init; }
|
|
}
|