diff options
author | Mattes D <github@xoft.cz> | 2013-12-14 22:00:30 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2013-12-14 22:00:30 +0100 |
commit | 22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e (patch) | |
tree | 4299dac2569ac649645a28bbe8aa50f1ba9de246 /src/World.h | |
parent | Merge pull request #429 from worktycho/quickfixs (diff) | |
parent | Potentially fixed debug asserts (diff) | |
download | cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.gz cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.bz2 cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.lz cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.xz cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.zst cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.zip |
Diffstat (limited to 'src/World.h')
-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 fc821a68a..5cd8b41b6 100644 --- a/src/World.h +++ b/src/World.h @@ -42,6 +42,7 @@ class cChunkGenerator; // The thread responsible for generating chunks class cChestEntity; class cDispenserEntity; class cFurnaceEntity; +class cNoteEntity; class cMobCensus; typedef std::list< cPlayer * > cPlayerList; @@ -51,6 +52,7 @@ typedef cItemCallback<cEntity> cEntityCallback; typedef cItemCallback<cChestEntity> cChestCallback; typedef cItemCallback<cDispenserEntity> cDispenserCallback; typedef cItemCallback<cFurnaceEntity> cFurnaceCallback; +typedef cItemCallback<cNoteEntity> cNoteBlockCallback; @@ -444,6 +446,9 @@ public: /// Calls the callback for the furnace at the specified coords; returns false if there's no furnace at those coords or callback returns true, returns true if found bool DoWithFurnaceAt(int a_BlockX, int a_BlockY, int a_BlockZ, cFurnaceCallback & a_Callback); // Exported in ManualBindings.cpp + + /// Calls the callback for the noteblock at the specified coords; returns false if there's no noteblock at those coords or callback returns true, returns true if found + bool DoWithNoteBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cNoteBlockCallback & 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 |