diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-15 13:54:13 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-15 13:54:13 +0200 |
commit | b687be9e44bc232b063365235541f871beeabfac (patch) | |
tree | f4cca078204a26171382ec7aba087a2e7a256c60 /source/WorldStorage.h | |
parent | Fix torches broken in rev 724 (diff) | |
download | cuberite-b687be9e44bc232b063365235541f871beeabfac.tar cuberite-b687be9e44bc232b063365235541f871beeabfac.tar.gz cuberite-b687be9e44bc232b063365235541f871beeabfac.tar.bz2 cuberite-b687be9e44bc232b063365235541f871beeabfac.tar.lz cuberite-b687be9e44bc232b063365235541f871beeabfac.tar.xz cuberite-b687be9e44bc232b063365235541f871beeabfac.tar.zst cuberite-b687be9e44bc232b063365235541f871beeabfac.zip |
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); |