diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-23 22:21:37 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-23 22:21:37 +0100 |
commit | 062b38b8b04a9f921550fb0a1f4c056216b9437f (patch) | |
tree | 26031833d6efe5e98461e5f3e8a893511919edc5 /source/cChunkMap.h | |
parent | Made cChunkPtr a plain old pointer again, since it's safe now (diff) | |
download | cuberite-062b38b8b04a9f921550fb0a1f4c056216b9437f.tar cuberite-062b38b8b04a9f921550fb0a1f4c056216b9437f.tar.gz cuberite-062b38b8b04a9f921550fb0a1f4c056216b9437f.tar.bz2 cuberite-062b38b8b04a9f921550fb0a1f4c056216b9437f.tar.lz cuberite-062b38b8b04a9f921550fb0a1f4c056216b9437f.tar.xz cuberite-062b38b8b04a9f921550fb0a1f4c056216b9437f.tar.zst cuberite-062b38b8b04a9f921550fb0a1f4c056216b9437f.zip |
Diffstat (limited to 'source/cChunkMap.h')
-rw-r--r-- | source/cChunkMap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/cChunkMap.h b/source/cChunkMap.h index 98698cfe3..7de26ee28 100644 --- a/source/cChunkMap.h +++ b/source/cChunkMap.h @@ -128,6 +128,7 @@ private: {
public:
cChunkLayer(int a_LayerX, int a_LayerZ, cChunkMap * a_Parent);
+ ~cChunkLayer();
/// Always returns an assigned chunkptr, but the chunk needn't be valid (loaded / generated) - callers must check
cChunkPtr GetChunk( int a_ChunkX, int a_ChunkY, int a_ChunkZ );
|