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/Vehicle.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 'src/entities/Vehicle.cpp')
-rw-r--r-- | src/entities/Vehicle.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/entities/Vehicle.cpp b/src/entities/Vehicle.cpp index f18cb5a7..ebd7ae68 100644 --- a/src/entities/Vehicle.cpp +++ b/src/entities/Vehicle.cpp @@ -3,5 +3,11 @@ #include "Vehicle.h" #include "Pools.h" +Bool &CVehicle::bWheelsOnlyCheat = *(Bool *)0x95CD78; +Bool &CVehicle::bAllDodosCheat = *(Bool *)0x95CD75; +Bool &CVehicle::bCheat3 = *(Bool *)0x95CD66; +Bool &CVehicle::bCheat4 = *(Bool *)0x95CD65; +Bool &CVehicle::bCheat5 = *(Bool *)0x95CD64; + void *CVehicle::operator new(size_t sz) { return CPools::GetVehiclePool()->New(); } void CVehicle::operator delete(void *p, size_t sz) { CPools::GetVehiclePool()->Delete((CVehicle*)p); } |