mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-14 16:20:34 +00:00
added some small bits and stubs
This commit is contained in:
parent
26fda92728
commit
541665d9d1
22 changed files with 242 additions and 10 deletions
7
src/entities/Vehicle.cpp
Normal file
7
src/entities/Vehicle.cpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include "common.h"
|
||||
#include "patcher.h"
|
||||
#include "Vehicle.h"
|
||||
#include "Pools.h"
|
||||
|
||||
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); }
|
Loading…
Add table
Add a link
Reference in a new issue