mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 06:55:55 +00:00
8 lines
270 B
C++
8 lines
270 B
C++
|
#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); }
|