diff options
author | aap <aap@papnet.eu> | 2020-11-13 13:14:22 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-11-13 13:14:22 +0100 |
commit | 8ab0d25b4a95a652244536667673348fa16eb895 (patch) | |
tree | 1f209ed6972ee3600517e4f3dd18b21d1122b354 /src/peds/Ped.h | |
parent | fixed bike collision damage (diff) | |
download | re3-8ab0d25b4a95a652244536667673348fa16eb895.tar re3-8ab0d25b4a95a652244536667673348fa16eb895.tar.gz re3-8ab0d25b4a95a652244536667673348fa16eb895.tar.bz2 re3-8ab0d25b4a95a652244536667673348fa16eb895.tar.lz re3-8ab0d25b4a95a652244536667673348fa16eb895.tar.xz re3-8ab0d25b4a95a652244536667673348fa16eb895.tar.zst re3-8ab0d25b4a95a652244536667673348fa16eb895.zip |
Diffstat (limited to '')
-rw-r--r-- | src/peds/Ped.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h index 6fc9ab67..3a4edfae 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -451,9 +451,7 @@ public: uint32 bVehExitWillBeInstant : 1; uint32 bHasAlreadyBeenRecorded : 1; uint32 bFallenDown : 1; -#ifdef PED_SKIN - uint32 bDontAcceptIKLookAts : 1; // TODO: find uses of this -#endif + uint32 bDontAcceptIKLookAts : 1; uint32 bReachedAttractorHeadingTarget : 1; uint32 bTurnedAroundOnAttractor : 1; @@ -513,10 +511,7 @@ public: CEntity* m_pEventEntity; float m_fAngleToEvent; AnimBlendFrameData *m_pFrames[PED_NODE_MAX]; -#ifdef PED_SKIN - // stored inside the clump with non-skin ped RpAtomic *m_pWeaponModel; -#endif AssocGroupId m_animGroup; CAnimBlendAssociation *m_pVehicleAnim; CVector2D m_vecAnimMoveDelta; @@ -579,8 +574,7 @@ public: CAccident *m_lastAccident; uint32 m_nPedType; CPedStats *m_pedStats; - float m_fleeFromPosX; - float m_fleeFromPosY; + CVector2D m_fleeFromPos; CEntity *m_fleeFrom; uint32 m_fleeTimer; CEntity* m_threatEx; // TODO(Miami): What is this? |