diff options
author | andrew <xdotftw@gmail.com> | 2014-01-18 15:59:33 +0100 |
---|---|---|
committer | andrew <xdotftw@gmail.com> | 2014-01-18 15:59:33 +0100 |
commit | 1ad6469a180dfe6932c756fe3c99bcada3ee0b7e (patch) | |
tree | f6a13924ef4972cd89e5ba4a8fb1e7363b6ba92b /src/World.h | |
parent | Command block (de)serialization (diff) | |
download | cuberite-1ad6469a180dfe6932c756fe3c99bcada3ee0b7e.tar cuberite-1ad6469a180dfe6932c756fe3c99bcada3ee0b7e.tar.gz cuberite-1ad6469a180dfe6932c756fe3c99bcada3ee0b7e.tar.bz2 cuberite-1ad6469a180dfe6932c756fe3c99bcada3ee0b7e.tar.lz cuberite-1ad6469a180dfe6932c756fe3c99bcada3ee0b7e.tar.xz cuberite-1ad6469a180dfe6932c756fe3c99bcada3ee0b7e.tar.zst cuberite-1ad6469a180dfe6932c756fe3c99bcada3ee0b7e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World.h b/src/World.h index c410e658e..1a7ad0cb1 100644 --- a/src/World.h +++ b/src/World.h @@ -469,7 +469,7 @@ public: bool DoWithNoteBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cNoteBlockCallback & a_Callback); // Exported in ManualBindings.cpp /// 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); // TODO: Export + bool DoWithCommandBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cCommandBlockCallback & 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 |