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/BlockHandler.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 '')
-rw-r--r-- | src/Blocks/BlockHandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockHandler.h b/src/Blocks/BlockHandler.h index 73a658b3f..a48a5a62b 100644 --- a/src/Blocks/BlockHandler.h +++ b/src/Blocks/BlockHandler.h @@ -3,7 +3,6 @@ #include "../Defines.h" #include "../Item.h" -#include "../Chunk.h" #include "WorldInterface.h" #include "ChunkInterface.h" @@ -13,6 +12,7 @@ // fwd: class cPlayer; +class cChunk; @@ -51,7 +51,7 @@ public: ); /// Called before the player has destroyed a block - virtual void OnDestroyedByPlayer(cWorld * a_World, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ); + virtual void OnDestroyedByPlayer(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ); /// Called before a block gets destroyed / replaced with air virtual void OnDestroyed(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ); |