major rework

This commit is contained in:
max
2026-02-16 18:32:48 +01:00
parent bbd82da07e
commit 932734e5b4
24 changed files with 1706 additions and 893 deletions

View File

@@ -0,0 +1,14 @@
namespace Car_simulation.Core.Models
{
public class CarState
{
public float Speed { get; set; }
public float RPM { get; set; }
public float Throttle { get; set; }
public float Brake { get; set; }
public string Gear { get; set; }
public float ClutchSlip { get; set; }
public float EnginePower { get; set; }
public float TransmittedPower { get; set; }
}
}