diff options
author | Mattes D <github@xoft.cz> | 2014-10-19 12:46:25 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-19 12:46:25 +0200 |
commit | b0a59927fb7531f6c909e6f581035568c79b625c (patch) | |
tree | 9837f6962a6744c6da9fb614c20ec7f46825a7c4 /src/BlockEntities/SignEntity.h | |
parent | LuaState: Pushing a cEntity pushes the correct class name. (diff) | |
download | cuberite-b0a59927fb7531f6c909e6f581035568c79b625c.tar cuberite-b0a59927fb7531f6c909e6f581035568c79b625c.tar.gz cuberite-b0a59927fb7531f6c909e6f581035568c79b625c.tar.bz2 cuberite-b0a59927fb7531f6c909e6f581035568c79b625c.tar.lz cuberite-b0a59927fb7531f6c909e6f581035568c79b625c.tar.xz cuberite-b0a59927fb7531f6c909e6f581035568c79b625c.tar.zst cuberite-b0a59927fb7531f6c909e6f581035568c79b625c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/SignEntity.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/BlockEntities/SignEntity.h b/src/BlockEntities/SignEntity.h index 53c43b758..be13c7a32 100644 --- a/src/BlockEntities/SignEntity.h +++ b/src/BlockEntities/SignEntity.h @@ -34,6 +34,8 @@ public: // tolua_end + BLOCKENTITY_PROTODEF(cSignEntity); + /// Creates a new empty sign entity at the specified block coords and block type (wall or standing). a_World may be NULL cSignEntity(BLOCKTYPE a_BlockType, int a_X, int a_Y, int a_Z, cWorld * a_World); @@ -53,8 +55,6 @@ public: virtual void UsedBy(cPlayer * a_Player) override; virtual void SendTo(cClientHandle & a_Client) override; - static const char * GetClassStatic(void) { return "cSignEntity"; } - private: AString m_Line[4]; |