summaryrefslogtreecommitdiffstats
path: root/src/vehicles/Automobile.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2021-01-18 14:11:55 +0100
committerGitHub <noreply@github.com>2021-01-18 14:11:55 +0100
commit7a730384efb35791367a76e0d778c75ce812a426 (patch)
tree199b8368daf900bc81ec9dabfe3b4b4225f4ed06 /src/vehicles/Automobile.h
parentsync milessdk with re3mss (diff)
parentinitial work on vehicles (diff)
downloadre3-7a730384efb35791367a76e0d778c75ce812a426.tar
re3-7a730384efb35791367a76e0d778c75ce812a426.tar.gz
re3-7a730384efb35791367a76e0d778c75ce812a426.tar.bz2
re3-7a730384efb35791367a76e0d778c75ce812a426.tar.lz
re3-7a730384efb35791367a76e0d778c75ce812a426.tar.xz
re3-7a730384efb35791367a76e0d778c75ce812a426.tar.zst
re3-7a730384efb35791367a76e0d778c75ce812a426.zip
Diffstat (limited to 'src/vehicles/Automobile.h')
-rw-r--r--src/vehicles/Automobile.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vehicles/Automobile.h b/src/vehicles/Automobile.h
index 16d86917..4f4ab500 100644
--- a/src/vehicles/Automobile.h
+++ b/src/vehicles/Automobile.h
@@ -26,6 +26,8 @@ public:
float m_aSuspensionSpringRatioPrev[4];
float m_aWheelTimer[4]; // set to 4.0 when wheel is touching ground, then decremented
float m_auto_unused1;
+ float m_fEngineInertiaVar1;
+ float m_fEngineInertiaVar2;
eSkidmarkType m_aWheelSkidmarkType[4];
bool m_aWheelSkidmarkBloody[4];
bool m_aWheelSkidmarkUnk[4];
@@ -114,6 +116,7 @@ public:
float GetHeightAboveRoad(void);
void PlayCarHorn(void);
+ void ProcessCarWheelPair(int leftWheel, int rightWheel, float steerAngle, CVector *contactSpeeds, CVector *contactPoints, float traction, float acceleration, float brake, bool bFront);
void FireTruckControl(void);
void TankControl(void);
void HydraulicControl(void);