diff options
author | aap <aap@papnet.eu> | 2019-07-18 21:41:20 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-18 21:41:20 +0200 |
commit | 9a7ce75c0371b4c35523a6c8872bba782a1eeb0b (patch) | |
tree | 66d5ff34dfa270334517385e6858c5d2fc8521e5 /src/vehicles/Automobile.h | |
parent | CAutomobile::ProcessControl done (diff) | |
download | re3-9a7ce75c0371b4c35523a6c8872bba782a1eeb0b.tar re3-9a7ce75c0371b4c35523a6c8872bba782a1eeb0b.tar.gz re3-9a7ce75c0371b4c35523a6c8872bba782a1eeb0b.tar.bz2 re3-9a7ce75c0371b4c35523a6c8872bba782a1eeb0b.tar.lz re3-9a7ce75c0371b4c35523a6c8872bba782a1eeb0b.tar.xz re3-9a7ce75c0371b4c35523a6c8872bba782a1eeb0b.tar.zst re3-9a7ce75c0371b4c35523a6c8872bba782a1eeb0b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Automobile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vehicles/Automobile.h b/src/vehicles/Automobile.h index 5ff39fed..6caf5dde 100644 --- a/src/vehicles/Automobile.h +++ b/src/vehicles/Automobile.h @@ -49,7 +49,9 @@ public: uint8 m_auto_flagA20 : 1; uint8 m_auto_flagA40 : 1; uint8 m_auto_flagA80 : 1; - uint8 field_4DA[2]; + uint8 bNotDamagedUpsideDown : 1; + uint8 bMoreResistantToDamage : 1; + uint8 field_4DB; CEntity *field_4DC; // blow up entity uint8 field_4E0[4]; uint32 m_nBusDoorTimerEnd; @@ -115,6 +117,7 @@ public: void ProcessBuoyancy(void); void DoDriveByShootings(void); int32 RcbanditCheckHitWheels(void); + void dmgDrawCarCollidingParticles(const CVector &pos, float amount); void PlayHornIfNecessary(void); void ResetSuspension(void); void SetupSuspensionLines(void); |