diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-08-08 02:21:38 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-08-08 13:46:49 +0200 |
commit | 2ba54983a2d6df7a644ca79a1441578c245e0cd8 (patch) | |
tree | 3e8f39f1344ec95e28fba993c3bad6fd4fe0c103 /src/peds/Ped.h | |
parent | Merge pull request #183 from Nick007J/master (diff) | |
download | re3-2ba54983a2d6df7a644ca79a1441578c245e0cd8.tar re3-2ba54983a2d6df7a644ca79a1441578c245e0cd8.tar.gz re3-2ba54983a2d6df7a644ca79a1441578c245e0cd8.tar.bz2 re3-2ba54983a2d6df7a644ca79a1441578c245e0cd8.tar.lz re3-2ba54983a2d6df7a644ca79a1441578c245e0cd8.tar.xz re3-2ba54983a2d6df7a644ca79a1441578c245e0cd8.tar.zst re3-2ba54983a2d6df7a644ca79a1441578c245e0cd8.zip |
Diffstat (limited to 'src/peds/Ped.h')
-rw-r--r-- | src/peds/Ped.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h index 7e0e9aa3..d078f4d4 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -303,7 +303,7 @@ public: uint8 m_ped_flagG1 : 1; uint8 m_ped_flagG2 : 1; uint8 m_ped_flagG4 : 1; - uint8 m_ped_flagG8 : 1; + uint8 m_ped_flagG8 : 1; // ped starts to go somewhere when set uint8 m_ped_flagG10 : 1; uint8 m_ped_flagG20 : 1; uint8 m_ped_flagG40 : 1; @@ -408,7 +408,7 @@ public: CEntity *m_fleeFrom; uint32 m_fleeTimer; uint32 field_344; - uint32 m_lastThreatTimer; + uint32 m_lastThreatTimer; // I don't think so CEntity *m_pCollidingEntity; uint8 m_stateUnused; uint8 pad_351[3]; @@ -597,6 +597,9 @@ public: void LineUpPedWithTrain(void); void ExitCar(void); void Fight(void); + bool FindBestCoordsFromNodes(CVector unused, CVector* a6); + void Wait(void); + void ProcessObjective(void); // Static methods static CVector GetLocalPositionToOpenCarDoor(CVehicle *veh, uint32 component, float offset); |