Add logging functionality with ILogger interface and implementations

This commit is contained in:
2025-10-29 01:50:42 +01:00
parent 5d86013239
commit bf15fad9ce
8 changed files with 151 additions and 1 deletions

View File

@@ -3,4 +3,5 @@ namespace GameCore.Config;
public class SimulationConfig
{
public float GravityStrength { get; set; } = 9.81f;
public bool LoggingEnabled { get; set; } = true;
}