1
0

Seperated BlockArea From World

If anyone can come up with a better name for the interface I'll change it, It contians to methods which do compleatly unrelated things
This commit is contained in:
Tycho
2014-01-20 09:17:24 -08:00
parent bd4278aca1
commit 9bb61e6e2e
4 changed files with 20 additions and 14 deletions

View File

@@ -0,0 +1,10 @@
class cBlockArea;
class cForEachChunkProvider
{
public:
virtual bool ForEachChunkInRect(int a_MinChunkX, int a_MaxChunkX, int a_MinChunkZ, int a_MaxChunkZ, cChunkDataCallback & a_Callback) = 0;
virtual bool WriteBlockArea(cBlockArea & a_Area, int a_MinBlockX, int a_MinBlockY, int a_MinBlockZ, int a_DataTypes) = 0;
};