major rework
This commit is contained in:
14
Car simulation/Core/Models/CarState.cs
Normal file
14
Car simulation/Core/Models/CarState.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user