diff options
author | aap <aap@papnet.eu> | 2019-06-13 10:02:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-13 10:02:52 +0200 |
commit | 12697a855353a1d537310d8f6dc293a6549e68da (patch) | |
tree | f6b758692616132f34da18f549d3bb92fd882110 /src/entities/Ped.cpp | |
parent | silly mistake (diff) | |
parent | Update Pad.cpp (diff) | |
download | re3-12697a855353a1d537310d8f6dc293a6549e68da.tar re3-12697a855353a1d537310d8f6dc293a6549e68da.tar.gz re3-12697a855353a1d537310d8f6dc293a6549e68da.tar.bz2 re3-12697a855353a1d537310d8f6dc293a6549e68da.tar.lz re3-12697a855353a1d537310d8f6dc293a6549e68da.tar.xz re3-12697a855353a1d537310d8f6dc293a6549e68da.tar.zst re3-12697a855353a1d537310d8f6dc293a6549e68da.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Ped.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entities/Ped.cpp b/src/entities/Ped.cpp index 018979eb..55e33a2d 100644 --- a/src/entities/Ped.cpp +++ b/src/entities/Ped.cpp @@ -3,6 +3,10 @@ #include "Ped.h" #include "Pools.h" +Bool &CPed::bNastyLimbsCheat = *(Bool*)0x95CD44; +Bool &CPed::bPedCheat2 = *(Bool*)0x95CD5A; +Bool &CPed::bPedCheat3 = *(Bool*)0x95CD59; + void *CPed::operator new(size_t sz) { return CPools::GetPedPool()->New(); } void CPed::operator delete(void *p, size_t sz) { CPools::GetPedPool()->Delete((CPed*)p); } |