Files
Car-Simulation/Car simulation/Core/Models/CarState.cs
2026-02-16 18:32:48 +01:00

14 lines
432 B
C#

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; }
}
}