diff options
author | madmaxoft <github@xoft.cz> | 2013-11-14 17:14:54 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-11-14 17:14:54 +0100 |
commit | 4533fc34ecae9a7a6d89f49a6b25628dde348773 (patch) | |
tree | 459ba89528502da3f44d0d261a1f9442c5d9e607 /source/BlockEntities/NoteEntity.h | |
parent | Exported cJukeboxEntity to Lua API. (diff) | |
download | cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.gz cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.bz2 cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.lz cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.xz cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.zst cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.zip |
Diffstat (limited to '')
-rw-r--r-- | source/BlockEntities/NoteEntity.h | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/source/BlockEntities/NoteEntity.h b/source/BlockEntities/NoteEntity.h index 84c4972de..e2d088f44 100644 --- a/source/BlockEntities/NoteEntity.h +++ b/source/BlockEntities/NoteEntity.h @@ -26,30 +26,37 @@ enum ENUM_NOTE_INSTRUMENTS +// tolua_begin + class cNoteEntity : public cBlockEntity { typedef cBlockEntity super; public: - /// Creates a new note entity that is not assigned to a world - cNoteEntity(int a_BlockX, int a_BlockY, int a_BlockZ); - + // tolua_end + + /// Creates a new note entity. a_World may be NULL cNoteEntity(int a_X, int a_Y, int a_Z, cWorld * a_World); - bool LoadFromJson( const Json::Value& a_Value ); - virtual void SaveToJson( Json::Value& a_Value ) override; + bool LoadFromJson(const Json::Value & a_Value); + virtual void SaveToJson(Json::Value & a_Value) override; - char GetPitch( void ); - void SetPitch( char a_Pitch ); - void IncrementPitch( void ); - void MakeSound( void ); - virtual void UsedBy( cPlayer * a_Player ) override; + // tolua_begin + + char GetPitch(void); + void SetPitch(char a_Pitch); + void IncrementPitch(void); + void MakeSound(void); + + // tolua_end + + virtual void UsedBy(cPlayer * a_Player) override; virtual void SendTo(cClientHandle & a_Client) override { }; private: - unsigned char m_Pitch; -}; + char m_Pitch; +} ; // tolua_export |