diff options
author | madmaxoft <github@xoft.cz> | 2013-11-14 15:37:09 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-11-14 15:37:09 +0100 |
commit | 082573771f469cfaef03d22e4281f207beef36c8 (patch) | |
tree | ac17ff48476205939d8b943eee2a7667c4b66ff1 /source/BlockEntities/NoteEntity.h | |
parent | Merge pull request #344 from marmot21/playerxp (diff) | |
download | cuberite-082573771f469cfaef03d22e4281f207beef36c8.tar cuberite-082573771f469cfaef03d22e4281f207beef36c8.tar.gz cuberite-082573771f469cfaef03d22e4281f207beef36c8.tar.bz2 cuberite-082573771f469cfaef03d22e4281f207beef36c8.tar.lz cuberite-082573771f469cfaef03d22e4281f207beef36c8.tar.xz cuberite-082573771f469cfaef03d22e4281f207beef36c8.tar.zst cuberite-082573771f469cfaef03d22e4281f207beef36c8.zip |
Diffstat (limited to '')
-rw-r--r-- | source/BlockEntities/NoteEntity.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/BlockEntities/NoteEntity.h b/source/BlockEntities/NoteEntity.h index 385591df6..84c4972de 100644 --- a/source/BlockEntities/NoteEntity.h +++ b/source/BlockEntities/NoteEntity.h @@ -29,9 +29,13 @@ enum ENUM_NOTE_INSTRUMENTS 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); + cNoteEntity(int a_X, int a_Y, int a_Z, cWorld * a_World); - virtual ~cNoteEntity(); bool LoadFromJson( const Json::Value& a_Value ); virtual void SaveToJson( Json::Value& a_Value ) override; |