diff options
author | madmaxoft <github@xoft.cz> | 2013-10-12 22:24:59 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-12 22:24:59 +0200 |
commit | 0352e4589882a070c5796f2604b9ad8f52a19f06 (patch) | |
tree | e92e6d56c007371a184076d1df352e9af257c278 /source/World.h | |
parent | APIDump: Added pretty-printing to code examples. (diff) | |
download | cuberite-0352e4589882a070c5796f2604b9ad8f52a19f06.tar cuberite-0352e4589882a070c5796f2604b9ad8f52a19f06.tar.gz cuberite-0352e4589882a070c5796f2604b9ad8f52a19f06.tar.bz2 cuberite-0352e4589882a070c5796f2604b9ad8f52a19f06.tar.lz cuberite-0352e4589882a070c5796f2604b9ad8f52a19f06.tar.xz cuberite-0352e4589882a070c5796f2604b9ad8f52a19f06.tar.zst cuberite-0352e4589882a070c5796f2604b9ad8f52a19f06.zip |
Diffstat (limited to 'source/World.h')
-rw-r--r-- | source/World.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/World.h b/source/World.h index dcb197bd0..25bc0b338 100644 --- a/source/World.h +++ b/source/World.h @@ -508,7 +508,7 @@ public: void QueueSaveAllChunks(void); // tolua_export
/// Queues a task onto the tick thread. The task object will be deleted once the task is finished
- void QueueTask(cTask * a_Task);
+ void QueueTask(cTask * a_Task); // Exported in ManualBindings.cpp
/// Returns the number of chunks loaded
int GetNumChunks() const; // tolua_export
@@ -589,7 +589,7 @@ public: /// Appends all usernames starting with a_Text (case-insensitive) into Results
void TabCompleteUserName(const AString & a_Text, AStringVector & a_Results);
-
+
private:
friend class cRoot;
|