diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-02-18 21:40:02 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-02-18 21:40:02 +0100 |
commit | 52c41f886927cf62ed592ba7fec974eee6b16844 (patch) | |
tree | a8479e65d606e2bcdf092501f30a43b778917d13 /src/World.h | |
parent | Add Skulls/Heads (diff) | |
download | cuberite-52c41f886927cf62ed592ba7fec974eee6b16844.tar cuberite-52c41f886927cf62ed592ba7fec974eee6b16844.tar.gz cuberite-52c41f886927cf62ed592ba7fec974eee6b16844.tar.bz2 cuberite-52c41f886927cf62ed592ba7fec974eee6b16844.tar.lz cuberite-52c41f886927cf62ed592ba7fec974eee6b16844.tar.xz cuberite-52c41f886927cf62ed592ba7fec974eee6b16844.tar.zst cuberite-52c41f886927cf62ed592ba7fec974eee6b16844.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/World.h b/src/World.h index 97358b88a..4e83833ed 100644 --- a/src/World.h +++ b/src/World.h @@ -45,6 +45,7 @@ class cChestEntity; class cDispenserEntity; class cFurnaceEntity; class cNoteEntity; +class cSkullEntity; class cMobCensus; class cCompositeChat; @@ -57,6 +58,7 @@ typedef cItemCallback<cDispenserEntity> cDispenserCallback; typedef cItemCallback<cFurnaceEntity> cFurnaceCallback; typedef cItemCallback<cNoteEntity> cNoteBlockCallback; typedef cItemCallback<cCommandBlockEntity> cCommandBlockCallback; +typedef cItemCallback<cSkullEntity> cSkullBlockCallback; @@ -510,6 +512,9 @@ public: /** 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); // Exported in ManualBindings.cpp + /** 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); // Exported in ManualBindings.cpp + /** 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); // Exported in ManualBindings.cpp |