7 lines
170 B
C#
7 lines
170 B
C#
namespace GameCore.Config;
|
|
|
|
public class SimulationConfig
|
|
{
|
|
public float GravityStrength { get; set; } = 9.81f;
|
|
public bool LoggingEnabled { get; set; } = true;
|
|
} |