summaryrefslogtreecommitdiffstats
path: root/src/peds/Ped.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2019-09-07 00:27:07 +0200
committereray orçunus <erayorcunus@gmail.com>2019-09-07 00:27:07 +0200
commit24d9773ae0ab589a25e455369d9e00a614aed21f (patch)
tree375f15e45411e4aea71c9c682c674d7bdb519cd5 /src/peds/Ped.h
parentMerge pull request #201 from erorcun/erorcun (diff)
downloadre3-24d9773ae0ab589a25e455369d9e00a614aed21f.tar
re3-24d9773ae0ab589a25e455369d9e00a614aed21f.tar.gz
re3-24d9773ae0ab589a25e455369d9e00a614aed21f.tar.bz2
re3-24d9773ae0ab589a25e455369d9e00a614aed21f.tar.lz
re3-24d9773ae0ab589a25e455369d9e00a614aed21f.tar.xz
re3-24d9773ae0ab589a25e455369d9e00a614aed21f.tar.zst
re3-24d9773ae0ab589a25e455369d9e00a614aed21f.zip
Diffstat (limited to '')
-rw-r--r--src/peds/Ped.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h
index 0fb46160..3003cd2d 100644
--- a/src/peds/Ped.h
+++ b/src/peds/Ped.h
@@ -308,7 +308,7 @@ public:
uint8 bWanderPathAfterExitingCar : 1;
uint8 m_ped_flagF2 : 1;
- uint8 m_ped_flagF4 : 1;
+ uint8 m_ped_flagF4 : 1; // Unfinished feature from VC
uint8 m_ped_flagF8 : 1;
uint8 bWillBeQuickJacked : 1;
uint8 bCancelEnteringCar : 1; // after door is opened or couldn't be opened due to it's locked
@@ -637,7 +637,6 @@ public:
void MoveHeadToLook(void);
void Pause(void);
void ProcessBuoyancy(void);
- bool ServiceTalkingWhenDead(void);
void ServiceTalking(void);
void SetJump(void);
void UpdatePosition(void);
@@ -669,7 +668,7 @@ public:
static void PedAnimDoorOpenCB(CAnimBlendAssociation *assoc, void *arg);
static void PedAnimPullPedOutCB(CAnimBlendAssociation *assoc, void *arg);
static void PedAnimDoorCloseCB(CAnimBlendAssociation *assoc, void *arg);
- static void SetInCarCB(CAnimBlendAssociation *assoc, void *arg);
+ static void PedSetInCarCB(CAnimBlendAssociation *assoc, void *arg);
static void PedSetOutCarCB(CAnimBlendAssociation *assoc, void *arg);
static void PedAnimAlignCB(CAnimBlendAssociation *assoc, void *arg);
static void PedSetDraggedOutCarCB(CAnimBlendAssociation *assoc, void *arg);
@@ -714,6 +713,7 @@ public:
void SetInTheAir(void);
void RestoreHeadPosition(void);
void PointGunAt(void);
+ bool ServiceTalkingWhenDead(void);
bool HasWeapon(uint8 weaponType) { return m_weapons[weaponType].m_eWeaponType == weaponType; }
CWeapon &GetWeapon(uint8 weaponType) { return m_weapons[weaponType]; }