diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-10-20 13:28:45 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-10-24 19:49:38 +0200 |
commit | 6d85435f60e4fa94b1956ceb44c7dddd92c4b39b (patch) | |
tree | a5448788a6de6ff71039040bb31e0b5aaaa43f87 /src/BlockEntities/BeaconEntity.h | |
parent | TNT Changes (#4970) (diff) | |
download | cuberite-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/BeaconEntity.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/BlockEntities/BeaconEntity.h b/src/BlockEntities/BeaconEntity.h index 8403dfa01..21c35610d 100644 --- a/src/BlockEntities/BeaconEntity.h +++ b/src/BlockEntities/BeaconEntity.h @@ -16,18 +16,15 @@ // tolua_begin -class cBeaconEntity: +class cBeaconEntity : public cBlockEntityWithItems { // tolua_end using Super = cBlockEntityWithItems; - public: // tolua_export - BLOCKENTITY_PROTODEF(cBeaconEntity) - cBeaconEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World); // cBlockEntity overrides: @@ -77,12 +74,9 @@ public: // tolua_export // tolua_end protected: + bool m_IsActive; char m_BeaconLevel; cEntityEffect::eType m_PrimaryEffect, m_SecondaryEffect; } ; // tolua_export - - - - |