From da9158937d96e84bd39a7fbbbaace7cd4f8fe18c Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Fri, 28 Aug 2020 21:36:46 +0100 Subject: WorldStorage: Removed unused callback parameters --- src/ChunkDef.h | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'src/ChunkDef.h') 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 class cCoordWithData { -- cgit v1.2.3