diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-09-27 20:19:28 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-09-27 20:19:28 +0200 |
commit | 7ce09a9113d693b85fdda13b3c04a8b8eb900153 (patch) | |
tree | 49c3c3742cff4c38a33bd5014dd9c57c0dcea71c /src/BlockEntities/BlockEntityWithItems.h | |
parent | Merge remote-tracking branch 'origin/master' into chestcarts (diff) | |
download | cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.gz cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.bz2 cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.lz cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.xz cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.tar.zst cuberite-7ce09a9113d693b85fdda13b3c04a8b8eb900153.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/BlockEntityWithItems.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/BlockEntities/BlockEntityWithItems.h b/src/BlockEntities/BlockEntityWithItems.h index ca6758e7a..f26ef07dd 100644 --- a/src/BlockEntities/BlockEntityWithItems.h +++ b/src/BlockEntities/BlockEntityWithItems.h @@ -20,12 +20,9 @@ // tolua_begin class cBlockEntityWithItems : - public cBlockEntity - // tolua_end - // tolua doesn't seem to support multiple inheritance? - , public cItemGrid::cListener - , public cWindowOwner - // tolua_begin + public cBlockEntity, + public cItemGrid::cListener, + public cBlockEntityWindowOwner { typedef cBlockEntity super; @@ -39,7 +36,8 @@ public: cWorld * a_World // Optional world to assign to the entity ) : super(a_BlockType, a_BlockX, a_BlockY, a_BlockZ, a_World), - m_Contents(a_ItemGridWidth, a_ItemGridHeight) + m_Contents(a_ItemGridWidth, a_ItemGridHeight), + cBlockEntityWindowOwner(this) { m_Contents.AddListener(*this); } |