mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 04:58:59 +00:00
22 lines
479 B
C++
22 lines
479 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);
|
|
|
|
// to make patching virtual functions possible
|
|
void Add_(void) { CDummy::Add(); }
|
|
void Remove_(void) { CDummy::Remove(); }
|
|
};
|
|
static_assert(sizeof(CDummy) == 0x68, "CDummy: error");
|