summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/SignEntity.h
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2024-11-02 22:27:47 +0100
committerAlexander Harkness <me@bearbin.net>2024-11-02 22:27:47 +0100
commitcb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a (patch)
treef647b20e1823f1846af88e832cf82a4a02e96e69 /src/BlockEntities/SignEntity.h
parentImprove clang-format config file, remove automatically enforced code style from contrib guide. (diff)
downloadcuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar
cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.gz
cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.bz2
cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.lz
cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.xz
cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.zst
cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.zip
Diffstat (limited to 'src/BlockEntities/SignEntity.h')
-rw-r--r--src/BlockEntities/SignEntity.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/BlockEntities/SignEntity.h b/src/BlockEntities/SignEntity.h
index 4cc69ee22..700056680 100644
--- a/src/BlockEntities/SignEntity.h
+++ b/src/BlockEntities/SignEntity.h
@@ -16,16 +16,15 @@
// tolua_begin
-class cSignEntity :
- public cBlockEntity
+class cSignEntity : public cBlockEntity
{
// tolua_end
using Super = cBlockEntity;
-public: // tolua_export
-
- /** Creates a new empty sign entity at the specified block coords and block type (wall or standing). a_World may be nullptr */
+ public: // tolua_export
+ /** Creates a new empty sign entity at the specified block coords and block type (wall or standing). a_World may be
+ * nullptr */
cSignEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World);
// tolua_begin
@@ -46,7 +45,6 @@ public: // tolua_export
virtual bool UsedBy(cPlayer * a_Player) override;
virtual void SendTo(cClientHandle & a_Client) override;
-private:
-
+ private:
std::array<AString, 4> m_Line;
-} ; // tolua_export
+}; // tolua_export