diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-03-28 15:47:52 +0100 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-03-28 16:52:25 +0100 |
commit | 112685ebac0a4f5da50fdc60ff71c35a5cddbdfa (patch) | |
tree | fb1223f514ddbf339bed0bed6a269ad1ad63c374 /src/peds/Ped.h | |
parent | remove include <new> from common.h (diff) | |
download | re3-112685ebac0a4f5da50fdc60ff71c35a5cddbdfa.tar re3-112685ebac0a4f5da50fdc60ff71c35a5cddbdfa.tar.gz re3-112685ebac0a4f5da50fdc60ff71c35a5cddbdfa.tar.bz2 re3-112685ebac0a4f5da50fdc60ff71c35a5cddbdfa.tar.lz re3-112685ebac0a4f5da50fdc60ff71c35a5cddbdfa.tar.xz re3-112685ebac0a4f5da50fdc60ff71c35a5cddbdfa.tar.zst re3-112685ebac0a4f5da50fdc60ff71c35a5cddbdfa.zip |
Diffstat (limited to '')
-rw-r--r-- | src/peds/Ped.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h index a19dc9f0..2edd5d68 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -3,14 +3,9 @@ #include "Physical.h" #include "Weapon.h" #include "PedStats.h" -#include "PedType.h" #include "PedIK.h" #include "AnimManager.h" -#include "AnimBlendClumpData.h" -#include "AnimBlendAssociation.h" #include "WeaponInfo.h" -#include "Fire.h" -#include "DMAudio.h" #include "EventList.h" #define FEET_OFFSET 1.04f @@ -19,6 +14,10 @@ struct CPathNode; class CAccident; class CObject; +class CFire; +struct AnimBlendFrameData; +class CAnimBlendAssociation; +enum eCrimeType; struct PedAudioData { @@ -339,7 +338,7 @@ public: uint8 bScriptObjectiveCompleted : 1; uint8 bKindaStayInSamePlace : 1; - uint8 m_ped_flagE2 : 1; // bBeingChasedByPolice? + uint8 bBeingChasedByPolice : 1; // Unused VC leftover. Should've been set for criminal/gang members uint8 bNotAllowedToDuck : 1; uint8 bCrouchWhenShooting : 1; uint8 bIsDucking : 1; |