diff options
Diffstat (limited to 'source/WorldStorage.h')
-rw-r--r-- | source/WorldStorage.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/WorldStorage.h b/source/WorldStorage.h index b2daba059..48036ed11 100644 --- a/source/WorldStorage.h +++ b/source/WorldStorage.h @@ -65,6 +65,9 @@ public: void QueueLoadChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ, bool a_Generate); // Queues the chunk for loading; if not loaded, the chunk will be generated if a_Generate is true void QueueSaveChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ); + /// Signals that a message should be output to the console when all the chunks have been saved + void QueueSavedMessage(void); + /// Loads the chunk specified; returns true on success, false on failure bool LoadChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ); |