forked from cosmii02/RacingDSX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CsvData.cs
24 lines (24 loc) · 1 KB
/
CsvData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace ForzaDSX
{
public class CsvData
{
public uint time { get; set; }
public float AccelerationX { get; set; }
public float AccelerationY { get; set; }
public float AccelerationZ { get; set; }
public float Brake { get; set; }
public float TireCombinedSlipFrontLeft { get; set; }
public float TireCombinedSlipFrontRight { get; set; }
public float TireCombinedSlipRearLeft { get; set; }
public float TireCombinedSlipRearRight { get; set; }
public float combinedTireSlip { get; set; }
public float AverageAcceleration { get; set; }
public float CurrentEngineRpm { get; set; }
public int ThrottleResistance { get; set; }
public int ThrottleResistance_filtered { get; set; }
public int BrakeResistance { get; set; }
public int BrakeResistance_filtered { get; set; }
public int BrakeVibrationFrequency { get; set; }
public int BrakeVibrationFrequency_freq { get; set; }
}
}