summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/BlockEntityWithItems.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2020-10-20 13:28:45 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-10-24 19:49:38 +0200
commit6d85435f60e4fa94b1956ceb44c7dddd92c4b39b (patch)
treea5448788a6de6ff71039040bb31e0b5aaaa43f87 /src/BlockEntities/BlockEntityWithItems.h
parentTNT Changes (#4970) (diff)
downloadcuberite-6d85435f60e4fa94b1956ceb44c7dddd92c4b39b.tar
cuberite-6d85435f60e4fa94b1956ceb44c7dddd92c4b39b.tar.gz
cuberite-6d85435f60e4fa94b1956ceb44c7dddd92c4b39b.tar.bz2
cuberite-6d85435f60e4fa94b1956ceb44c7dddd92c4b39b.tar.lz
cuberite-6d85435f60e4fa94b1956ceb44c7dddd92c4b39b.tar.xz
cuberite-6d85435f60e4fa94b1956ceb44c7dddd92c4b39b.tar.zst
cuberite-6d85435f60e4fa94b1956ceb44c7dddd92c4b39b.zip
Diffstat (limited to '')
-rw-r--r--src/BlockEntities/BlockEntityWithItems.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/BlockEntities/BlockEntityWithItems.h b/src/BlockEntities/BlockEntityWithItems.h
index 74e02693d..f191c8f43 100644
--- a/src/BlockEntities/BlockEntityWithItems.h
+++ b/src/BlockEntities/BlockEntityWithItems.h
@@ -32,9 +32,6 @@ class cBlockEntityWithItems :
public: // tolua_export
- BLOCKENTITY_PROTODEF(cBlockEntityWithItems)
-
-
cBlockEntityWithItems(
BLOCKTYPE a_BlockType, // Type of the block that the entity represents
NIBBLETYPE a_BlockMeta, // Meta of the block that the entity represents
@@ -64,12 +61,9 @@ public: // tolua_export
const cItemGrid & GetContents(void) const { return m_Contents; }
protected:
+
cItemGrid m_Contents;
// cItemGrid::cListener overrides:
virtual void OnSlotChanged(cItemGrid * a_Grid, int a_SlotNum) override;
} ; // tolua_export
-
-
-
-