summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/EnchantingTableEntity.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/BlockEntities/EnchantingTableEntity.h')
-rw-r--r--src/BlockEntities/EnchantingTableEntity.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/BlockEntities/EnchantingTableEntity.h b/src/BlockEntities/EnchantingTableEntity.h
index 1f0aafdf3..cba116625 100644
--- a/src/BlockEntities/EnchantingTableEntity.h
+++ b/src/BlockEntities/EnchantingTableEntity.h
@@ -7,20 +7,23 @@
-class cEnchantingTableEntity :
- public cBlockEntity
+class cEnchantingTableEntity : public cBlockEntity
{
using Super = cBlockEntity;
-public:
-
- cEnchantingTableEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World, AString a_CustomName = "");
+ public:
+ cEnchantingTableEntity(
+ BLOCKTYPE a_BlockType,
+ NIBBLETYPE a_BlockMeta,
+ Vector3i a_Pos,
+ cWorld * a_World,
+ AString a_CustomName = ""
+ );
const AString & GetCustomName() const { return m_CustomName; }
void SetCustomName(const AString & a_CustomName) { m_CustomName = a_CustomName; }
-private:
-
+ private:
// cBlockEntity overrides:
virtual cItems ConvertToPickups() const override;
virtual void CopyFrom(const cBlockEntity & a_Src) override;