summaryrefslogtreecommitdiffstats
path: root/src/entities/Vehicle.cpp
blob: bac05f7b392d56c46e272cebc2aec2c12e1c298b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "common.h"
#include "patcher.h"
#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); }