diff options
Diffstat (limited to 'src/BlockEntities/JukeboxEntity.h')
-rw-r--r-- | src/BlockEntities/JukeboxEntity.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/src/BlockEntities/JukeboxEntity.h b/src/BlockEntities/JukeboxEntity.h index 744012fe6..8ccc11d80 100644 --- a/src/BlockEntities/JukeboxEntity.h +++ b/src/BlockEntities/JukeboxEntity.h @@ -10,20 +10,18 @@ // tolua_begin -class cJukeboxEntity : - public cBlockEntity +class cJukeboxEntity : public cBlockEntity { // tolua_end using Super = cBlockEntity; -public: // tolua_export - + public: // tolua_export cJukeboxEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World); // tolua_begin - int GetRecord(void); + int GetRecord(void); void SetRecord(int a_Record); /** Plays the specified Record. Return false if a_Record isn't a playable Record (E_ITEM_XXX_DISC). @@ -36,10 +34,7 @@ public: // tolua_export /** Is in the Jukebox a Record? */ bool IsPlayingRecord(void) const; - static bool IsRecordItem(int a_Item) - { - return ((a_Item >= E_ITEM_FIRST_DISC) && (a_Item <= E_ITEM_LAST_DISC)); - } + static bool IsRecordItem(int a_Item) { return ((a_Item >= E_ITEM_FIRST_DISC) && (a_Item <= E_ITEM_LAST_DISC)); } // tolua_end @@ -50,6 +45,6 @@ public: // tolua_export virtual bool UsedBy(cPlayer * a_Player) override; virtual void SendTo(cClientHandle &) override {} -private: + private: int m_Record; -} ; // tolua_end +}; // tolua_end |