summaryrefslogtreecommitdiffstats
path: root/src/peds/Ped.h
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2019-07-14 11:49:03 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2019-07-14 11:49:03 +0200
commit41dbd754dee344c79207e0821df6bcc262f90726 (patch)
treee80d10adead90967de74b488a8253d2d3343be73 /src/peds/Ped.h
parentfixed policeDontCare (diff)
downloadre3-41dbd754dee344c79207e0821df6bcc262f90726.tar
re3-41dbd754dee344c79207e0821df6bcc262f90726.tar.gz
re3-41dbd754dee344c79207e0821df6bcc262f90726.tar.bz2
re3-41dbd754dee344c79207e0821df6bcc262f90726.tar.lz
re3-41dbd754dee344c79207e0821df6bcc262f90726.tar.xz
re3-41dbd754dee344c79207e0821df6bcc262f90726.tar.zst
re3-41dbd754dee344c79207e0821df6bcc262f90726.zip
Diffstat (limited to '')
-rw-r--r--src/peds/Ped.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h
index cd7d88af..d13371ab 100644
--- a/src/peds/Ped.h
+++ b/src/peds/Ped.h
@@ -210,7 +210,7 @@ public:
uint8 m_ped_flagD10 : 1;
uint8 m_ped_flagD20 : 1;
uint8 m_ped_flagD40 : 1; // reset when objective changes
- uint8 m_ped_flagD80 : 1;
+ uint8 m_bScriptObjectiveCompleted : 1;
uint8 m_ped_flagE1 : 1;
uint8 m_ped_flagE2 : 1;
@@ -460,6 +460,9 @@ public:
void MakeChangesForNewWeapon(int8);
void CheckAroundForPossibleCollisions(void);
bool Seek(void);
+ void ClearAll(void);
+ void SetWanderPath(int8);
+ void SetFollowPath(CVector);
// Static methods
static void GetLocalPositionToOpenCarDoor(CVector *output, CVehicle *veh, uint32 enterType, float offset);