mirror of
https://github.com/halpz/re3.git
synced 2025-07-27 05:12:43 +00:00
added some small bits and stubs
This commit is contained in:
7
src/entities/Dummy.cpp
Normal file
7
src/entities/Dummy.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
#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); }
|
Reference in New Issue
Block a user