summaryrefslogtreecommitdiffstats
path: root/src/ChunkDef.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2020-08-28 22:36:46 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-08-28 22:36:46 +0200
commitda9158937d96e84bd39a7fbbbaace7cd4f8fe18c (patch)
tree0bd2613828e8ff500097760a91afaa6d7ca6d234 /src/ChunkDef.h
parentClean up pickup collection to use ForEachEntityInBox (diff)
downloadcuberite-da9158937d96e84bd39a7fbbbaace7cd4f8fe18c.tar
cuberite-da9158937d96e84bd39a7fbbbaace7cd4f8fe18c.tar.gz
cuberite-da9158937d96e84bd39a7fbbbaace7cd4f8fe18c.tar.bz2
cuberite-da9158937d96e84bd39a7fbbbaace7cd4f8fe18c.tar.lz
cuberite-da9158937d96e84bd39a7fbbbaace7cd4f8fe18c.tar.xz
cuberite-da9158937d96e84bd39a7fbbbaace7cd4f8fe18c.tar.zst
cuberite-da9158937d96e84bd39a7fbbbaace7cd4f8fe18c.zip
Diffstat (limited to 'src/ChunkDef.h')
-rw-r--r--src/ChunkDef.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h
index 8f46c5f8f..82e7e518e 100644
--- a/src/ChunkDef.h
+++ b/src/ChunkDef.h
@@ -629,27 +629,6 @@ public:
-/** Provides storage for a set of chunk coords together with a callback.
-Used for chunk queues that notify about processed items. */
-class cChunkCoordsWithCallback
-{
-public:
- cChunkCoordsWithCallback(int a_ChunkX, int a_ChunkZ, cChunkCoordCallback * a_Callback):
- m_ChunkX(a_ChunkX),
- m_ChunkZ(a_ChunkZ),
- m_Callback(a_Callback)
- {
- }
-
- int m_ChunkX;
- int m_ChunkZ;
- cChunkCoordCallback * m_Callback;
-};
-
-
-
-
-
/** Generic template that can store any kind of data together with a triplet of 3 coords */
template <typename X> class cCoordWithData
{