diff options
author | Mattes D <github@xoft.cz> | 2014-09-05 22:16:48 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-05 22:16:48 +0200 |
commit | 137b021d26d47b11fc27df1c0b52f408f0ef5257 (patch) | |
tree | 462a02d3ab4ed76bfeb43db320435670be9f4d04 /src/Generating/ChunkGenerator.h | |
parent | BiomeMultiCache is not used for simple generators. (diff) | |
download | cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.gz cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.bz2 cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.lz cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.xz cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.zst cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/ChunkGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Generating/ChunkGenerator.h b/src/Generating/ChunkGenerator.h index e880a6766..190d9e616 100644 --- a/src/Generating/ChunkGenerator.h +++ b/src/Generating/ChunkGenerator.h @@ -106,6 +106,10 @@ public: If this callback returns false, the chunk is not generated. */ virtual bool HasChunkAnyClients(int a_ChunkX, int a_ChunkZ) = 0; + + /** Called to check whether the specified chunk is in the queued state. + Currently used only in Debug-mode asserts. */ + virtual bool IsChunkQueued(int a_ChunkX, int a_ChunkZ) = 0; } ; |