summaryrefslogtreecommitdiffstats
path: root/src/entities/Dummy.cpp
blob: a48801752815310b265c18f2d8dda0e8743cea6b (plain) (blame)
1
2
3
4
5
6
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); }