diff options
author | aap <aap@papnet.eu> | 2019-06-02 17:13:56 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-02 17:13:56 +0200 |
commit | 541665d9d12d9f85dd759b14a8c6abd84714b84f (patch) | |
tree | 038a09c138f91ffe5512e27f0cfe6141f47ea24e /src/entities/Dummy.cpp | |
parent | Merge pull request #6 from Fire-Head/master (diff) | |
download | re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.gz re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.bz2 re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.lz re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.xz re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.zst re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Dummy.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/entities/Dummy.cpp b/src/entities/Dummy.cpp new file mode 100644 index 00000000..a4880175 --- /dev/null +++ b/src/entities/Dummy.cpp @@ -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); } |