mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
8 lines
276 B
C++
8 lines
276 B
C++
#include "common.h"
|
|
#include "rpworld.h"
|
|
#include "Building.h"
|
|
#include "Pools.h"
|
|
|
|
void *CBuilding::operator new(size_t sz) { return CPools::GetBuildingPool()->New(); }
|
|
void CBuilding::operator delete(void *p, size_t sz) { CPools::GetBuildingPool()->Delete((CBuilding*)p); }
|