diff options
Diffstat (limited to 'src/ChunkDef.h')
-rw-r--r-- | src/ChunkDef.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h index f6c0381db..fcda9b5a6 100644 --- a/src/ChunkDef.h +++ b/src/ChunkDef.h @@ -464,7 +464,8 @@ public: virtual ~cChunkCoordCallback() {} - virtual void Call(int a_ChunkX, int a_ChunkZ) = 0; + /** Called with the chunk's coords, and an optional operation status flag for operations that support it. */ + virtual void Call(int a_ChunkX, int a_ChunkZ, bool a_IsSuccess) = 0; } ; |