diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-02-18 21:40:02 +0100 |
---|---|---|
committer | TheJumper <maximilian.springer@web.de> | 2014-02-23 19:50:50 +0100 |
commit | 7bc59468832f2eb25f64194ba29da4a821a33866 (patch) | |
tree | b22a6888cc8ff883c227835c426e1d786523d970 /src/Chunk.h | |
parent | Add Skulls/Heads (diff) | |
download | cuberite-7bc59468832f2eb25f64194ba29da4a821a33866.tar cuberite-7bc59468832f2eb25f64194ba29da4a821a33866.tar.gz cuberite-7bc59468832f2eb25f64194ba29da4a821a33866.tar.bz2 cuberite-7bc59468832f2eb25f64194ba29da4a821a33866.tar.lz cuberite-7bc59468832f2eb25f64194ba29da4a821a33866.tar.xz cuberite-7bc59468832f2eb25f64194ba29da4a821a33866.tar.zst cuberite-7bc59468832f2eb25f64194ba29da4a821a33866.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Chunk.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Chunk.h b/src/Chunk.h index 682ec6170..3ef4d3a36 100644 --- a/src/Chunk.h +++ b/src/Chunk.h @@ -31,6 +31,7 @@ class cChestEntity; class cDispenserEntity; class cFurnaceEntity; class cNoteEntity; +class cSkullEntity; class cBlockArea; class cPawn; class cPickup; @@ -47,6 +48,7 @@ typedef cItemCallback<cDispenserEntity> cDispenserCallback; typedef cItemCallback<cFurnaceEntity> cFurnaceCallback; typedef cItemCallback<cNoteEntity> cNoteBlockCallback; typedef cItemCallback<cCommandBlockEntity> cCommandBlockCallback; +typedef cItemCallback<cSkullEntity> cSkullBlockCallback; @@ -249,7 +251,10 @@ public: bool DoWithNoteBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cNoteBlockCallback & a_Callback); /** Calls the callback for the command block at the specified coords; returns false if there's no command block at those coords or callback returns true, returns true if found */ - bool DoWithCommandBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cCommandBlockCallback & a_Callback); + bool DoWithCommandBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cCommandBlockCallback & a_Callback); + + /** Calls the callback for the skull block at the specified coords; returns false if there's no skull block at those coords or callback returns true, returns true if found */ + bool DoWithSkullBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cSkullBlockCallback & a_Callback); /** Retrieves the test on the sign at the specified coords; returns false if there's no sign at those coords, true if found */ bool GetSignLines (int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_Line1, AString & a_Line2, AString & a_Line3, AString & a_Line4); // Lua-accessible |