1
0

Added end portal and enchanting table block entities

This commit is contained in:
12xx12
2020-09-17 16:16:20 +02:00
committed by Tiger Wang
parent a2935efaff
commit f8de67aace
22 changed files with 657 additions and 321 deletions

View File

@@ -0,0 +1,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);
}