mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-01 00:15:55 +00:00
8 lines
258 B
C++
8 lines
258 B
C++
|
#include "common.h"
|
||
|
#include "patcher.h"
|
||
|
#include "Dummy.h"
|
||
|
#include "Pools.h"
|
||
|
|
||
|
void *CDummy::operator new(size_t sz) { return CPools::GetDummyPool()->New(); }
|
||
|
void CDummy::operator delete(void *p, size_t sz) { CPools::GetDummyPool()->Delete((CDummy*)p); }
|