mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 09:50:33 +00:00
commit
6579645934
21 changed files with 1012 additions and 14 deletions
|
@ -48,6 +48,9 @@ bool CVehicle::bAllTaxisHaveNitro;
|
|||
bool CVehicle::m_bDisableMouseSteering = true;
|
||||
bool CVehicle::bDisableRemoteDetonation;
|
||||
bool CVehicle::bDisableRemoteDetonationOnContact;
|
||||
#ifndef MASTER
|
||||
bool CVehicle::m_bDisplayHandlingInfo;
|
||||
#endif
|
||||
|
||||
void *CVehicle::operator new(size_t sz) { return CPools::GetVehiclePool()->New(); }
|
||||
void *CVehicle::operator new(size_t sz, int handle) { return CPools::GetVehiclePool()->New(handle); }
|
||||
|
|
|
@ -402,6 +402,9 @@ public:
|
|||
static bool m_bDisableMouseSteering;
|
||||
static bool bDisableRemoteDetonation;
|
||||
static bool bDisableRemoteDetonationOnContact;
|
||||
#ifndef MASTER
|
||||
static bool m_bDisplayHandlingInfo;
|
||||
#endif
|
||||
};
|
||||
|
||||
void DestroyVehicleAndDriverAndPassengers(CVehicle* pVehicle);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue