summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/EndPortalEntity.cpp
blob: f40e9b20e065bd8472db8ffeab7e4a37ef42614e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "EndPortalEntity.h"
#include "../ClientHandle.h"





cEndPortalEntity::cEndPortalEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World) :
	Super(a_BlockType, a_BlockMeta, a_Pos, a_World)
{
	ASSERT(a_BlockType == E_BLOCK_END_PORTAL);
}





void cEndPortalEntity::CopyFrom(const cBlockEntity & a_Src)
{
	Super::CopyFrom(a_Src);
}





bool cEndPortalEntity::UsedBy(cPlayer * a_Player)
{
	UNUSED(a_Player);
	return true;
}





void cEndPortalEntity::SendTo(cClientHandle & a_Client)
{
	a_Client.SendUpdateBlockEntity(*this);
}