1
0
Fork 0

Removed unused class cChunkDataCollector.

This commit is contained in:
Mattes D 2015-12-18 11:16:28 +01:00
parent c8de191e4d
commit d135e49451
1 changed files with 0 additions and 20 deletions

View File

@ -52,26 +52,6 @@ public:
/** A simple implementation of the cChunkDataCallback interface that collects all block data into a buffer */
class cChunkDataCollector :
public cChunkDataCallback
{
public:
cChunkData m_BlockData;
protected:
virtual void ChunkData(const cChunkData & a_BlockData) override
{
m_BlockData = a_BlockData.Copy();
}
};
/** A simple implementation of the cChunkDataCallback interface that collects all block data into a single buffer */
class cChunkDataArrayCollector :
public cChunkDataCallback