added some small bits and stubs

This commit is contained in:
aap
2019-06-02 17:13:56 +02:00
parent 26fda92728
commit 541665d9d1
22 changed files with 242 additions and 10 deletions

7
src/entities/Dummy.cpp Normal file
View 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); }