mirror of
https://github.com/halpz/re3.git
synced 2025-01-25 07:00:59 +00:00
20 lines
339 B
C++
20 lines
339 B
C++
#pragma once
|
|
|
|
#include "Lists.h"
|
|
#include "Entity.h"
|
|
|
|
class CDummy : public CEntity
|
|
{
|
|
public:
|
|
CEntryInfoList m_entryInfoList;
|
|
|
|
CDummy(void) { m_type = ENTITY_TYPE_DUMMY; }
|
|
void Add(void);
|
|
void Remove(void);
|
|
|
|
static void *operator new(size_t);
|
|
static void operator delete(void*, size_t);
|
|
};
|
|
|
|
bool IsDummyPointerValid(CDummy* pDummy);
|