got rid of upper case types
This commit is contained in:
@@ -3,11 +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;
|
||||
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); }
|
||||
|
||||
Reference in New Issue
Block a user