mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-01-02 13:11:49 +01:00
8 lines
282 B
C++
8 lines
282 B
C++
#include "common.h"
|
|
#include "rpworld.h"
|
|
#include "Treadable.h"
|
|
#include "Pools.h"
|
|
|
|
void *CTreadable::operator new(size_t sz) { return CPools::GetTreadablePool()->New(); }
|
|
void CTreadable::operator delete(void *p, size_t sz) { CPools::GetTreadablePool()->Delete((CTreadable*)p); }
|