1
0
Fork 0
cuberite-2a/src/BlockEntities/EnderChestEntity.h

35 lines
784 B
C
Raw Normal View History

#pragma once
2014-06-29 10:36:38 +00:00
#include "BlockEntity.h"
#include "../UI/WindowOwner.h"
// tolua_begin
class cEnderChestEntity :
2014-06-29 10:36:38 +00:00
public cBlockEntity,
public cBlockEntityWindowOwner
{
// tolua_end
2016-02-05 21:45:45 +00:00
2020-04-13 16:38:06 +00:00
using Super = cBlockEntity;
public: // tolua_export
cEnderChestEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World);
// cBlockEntity overrides:
virtual void OnRemoveFromWorld() override;
virtual bool UsedBy(cPlayer * a_Player) override;
virtual void SendTo(cClientHandle & a_Client) override;
2014-06-29 10:36:38 +00:00
static void LoadFromJson(const Json::Value & a_Value, cItemGrid & a_Grid);
static void SaveToJson(Json::Value & a_Value, const cItemGrid & a_Grid);
2016-02-05 21:45:45 +00:00
2014-06-29 10:36:38 +00:00
/** Opens a new enderchest window for this enderchest */
void OpenNewWindow(void);
} ; // tolua_export