diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-02-01 15:01:13 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-02-01 15:01:13 +0100 |
commit | cf3b4ec226034b006fd646b395f4e8a609f6f378 (patch) | |
tree | e8c88b1d734660b2b7640d6cf31a62729e05b92c /src/Blocks/ChunkInterface.h | |
parent | Changed pointers to references (diff) | |
download | cuberite-cf3b4ec226034b006fd646b395f4e8a609f6f378.tar cuberite-cf3b4ec226034b006fd646b395f4e8a609f6f378.tar.gz cuberite-cf3b4ec226034b006fd646b395f4e8a609f6f378.tar.bz2 cuberite-cf3b4ec226034b006fd646b395f4e8a609f6f378.tar.lz cuberite-cf3b4ec226034b006fd646b395f4e8a609f6f378.tar.xz cuberite-cf3b4ec226034b006fd646b395f4e8a609f6f378.tar.zst cuberite-cf3b4ec226034b006fd646b395f4e8a609f6f378.zip |
Diffstat (limited to 'src/Blocks/ChunkInterface.h')
-rw-r--r-- | src/Blocks/ChunkInterface.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Blocks/ChunkInterface.h b/src/Blocks/ChunkInterface.h index cca5bf913..b30eff1e4 100644 --- a/src/Blocks/ChunkInterface.h +++ b/src/Blocks/ChunkInterface.h @@ -3,6 +3,9 @@ #include "../ChunkMap.h" #include "../ForEachChunkProvider.h" +#include "WorldInterface.h" + +class cBlockHandler; class cChunkInterface : public cForEachChunkProvider { @@ -69,6 +72,8 @@ public: return m_ChunkMap->WriteBlockArea(a_Area, a_MinBlockX, a_MinBlockY, a_MinBlockZ, a_DataTypes); } + bool DigBlock(cWorldInterface & a_WorldInterface, int a_X, int a_Y, int a_Z); + private: cChunkMap * m_ChunkMap; }; |