Adds an `.editorconfig` file with C# and project-specific conventions. Applies consistent indentation and formatting across backend handlers, runtime models, and AI services.
7 lines
164 B
C#
7 lines
164 B
C#
namespace SpaceGame.Api.Universe.Simulation;
|
|
|
|
public sealed class OrbitalSimulationOptions
|
|
{
|
|
public double SimulatedSecondsPerRealSecond { get; init; } = 0d;
|
|
}
|