summaryrefslogtreecommitdiffstats
path: root/src/entities/Dummy.h
blob: 6c3f12ea82670805332d100128a7d2c04dcde610 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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) throw();
	static void operator delete(void*, size_t) throw();
};

VALIDATE_SIZE(CDummy, 0x68);