mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-08 02:40:35 +00:00
New updates for Hud.cpp and more.
This commit is contained in:
parent
8b55b8b144
commit
92cc1cf3af
28 changed files with 2062 additions and 38 deletions
|
@ -1,11 +1,42 @@
|
|||
#pragma once
|
||||
|
||||
#include "Ped.h"
|
||||
#include "Wanted.h"
|
||||
|
||||
class CPlayerPed : public CPed
|
||||
{
|
||||
class CPlayerPed : public CPed {
|
||||
public:
|
||||
// 0x53C
|
||||
uint8 stuff[180];
|
||||
CWanted *m_pWanted;
|
||||
CCopPed *m_pArrestingCop;
|
||||
Float m_fMoveSpeed;
|
||||
Float m_fCurrentStamina;
|
||||
Float m_fMaxStamina;
|
||||
Float m_fStaminaProgress;
|
||||
Bool m_bWeaponSlot;
|
||||
Bool m_bSpeedTimerFlag;
|
||||
Bool m_bShouldEvade;
|
||||
int8 field_1367;
|
||||
int32 m_nSpeedTimer;
|
||||
int32 m_nShotDelay;
|
||||
Float field_1376;
|
||||
int8 field_1380;
|
||||
int8 field_1381;
|
||||
int8 field_1382;
|
||||
int8 field_1383;
|
||||
CEntity *m_pEvadingFrom;
|
||||
int32 m_nTargettableObjects[4];
|
||||
Bool m_bAdrenalineActive;
|
||||
Bool m_bHasLockOnTarget;
|
||||
int8 field_1406;
|
||||
int8 field_1407;
|
||||
Bool m_bAdrenalineTime;
|
||||
Bool m_bCanBeDamaged;
|
||||
int8 field_1413;
|
||||
int8 field_1414;
|
||||
int8 field_1415;
|
||||
CVector field_1416[6];
|
||||
int32 field_1488[6];
|
||||
Float field_1512;
|
||||
Float m_fFPSMoveHeading;
|
||||
};
|
||||
|
||||
static_assert(sizeof(CPlayerPed) == 0x5F0, "CPlayerPed: error");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue