diff options
author | erorcun <erayorcunus@gmail.com> | 2019-10-26 17:46:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-26 17:46:09 +0200 |
commit | f3de43f88bf0ee3c4808c965fa15cd7673ad83ad (patch) | |
tree | 2abca556f6fde37dd99938953dc5a61f98ada67f /src/peds/Ped.h | |
parent | Fix hornPatternsArray (diff) | |
parent | Gang attack fix & SeekCar (diff) | |
download | re3-f3de43f88bf0ee3c4808c965fa15cd7673ad83ad.tar re3-f3de43f88bf0ee3c4808c965fa15cd7673ad83ad.tar.gz re3-f3de43f88bf0ee3c4808c965fa15cd7673ad83ad.tar.bz2 re3-f3de43f88bf0ee3c4808c965fa15cd7673ad83ad.tar.lz re3-f3de43f88bf0ee3c4808c965fa15cd7673ad83ad.tar.xz re3-f3de43f88bf0ee3c4808c965fa15cd7673ad83ad.tar.zst re3-f3de43f88bf0ee3c4808c965fa15cd7673ad83ad.zip |
Diffstat (limited to 'src/peds/Ped.h')
-rw-r--r-- | src/peds/Ped.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h index b3d0f145..b8d2f5dd 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -294,9 +294,9 @@ public: uint8 bIsLanding : 1; uint8 bIsRunning : 1; // on some conditions uint8 bHitSomethingLastFrame : 1; - uint8 m_ped_flagB80 : 1; // bIsNearCar? it's sure that it's related with cars and used for deciding whether we should move + uint8 bVehEnterDoorIsBlocked : 1; // because someone else enters/exits from there - uint8 m_ped_flagC1 : 1; // bCanPedEnterSeekedCar? + uint8 bCanPedEnterSeekedCar : 1; uint8 bRespondsToThreats : 1; uint8 bRenderPedInCar : 1; uint8 bChangedSeat : 1; @@ -679,6 +679,8 @@ public: void SetEnterCar_AllClear(CVehicle*, uint32, uint32); void SetSolicit(uint32 time); void ScanForInterestingStuff(void); + void WarpPedIntoCar(CVehicle*); + void SetCarJack(CVehicle*); // Static methods static CVector GetLocalPositionToOpenCarDoor(CVehicle *veh, uint32 component, float offset); |