15 lines
512 B
C#
15 lines
512 B
C#
namespace SpaceGame.Api.Universe.Simulation;
|
|
|
|
public sealed class BalanceOptions
|
|
{
|
|
public float SimulationSpeedMultiplier { get; set; } = 1f;
|
|
public float YPlane { get; set; }
|
|
public float ArrivalThreshold { get; set; }
|
|
public float MiningRate { get; set; }
|
|
public float MiningCycleSeconds { get; set; }
|
|
public float TransferRate { get; set; }
|
|
public float DockingDuration { get; set; }
|
|
public float UndockingDuration { get; set; }
|
|
public float UndockDistance { get; set; }
|
|
}
|