diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-01-25 20:14:14 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-01-25 20:14:14 +0100 |
commit | 15b92af166e03e3deb8baf5eb2ec6b0be5981646 (patch) | |
tree | 49367551eb466edce81ed6f68507ab60c6efe3df /src/Blocks/BlockBed.h | |
parent | dded dependecy on Blocks to Generator (diff) | |
download | cuberite-15b92af166e03e3deb8baf5eb2ec6b0be5981646.tar cuberite-15b92af166e03e3deb8baf5eb2ec6b0be5981646.tar.gz cuberite-15b92af166e03e3deb8baf5eb2ec6b0be5981646.tar.bz2 cuberite-15b92af166e03e3deb8baf5eb2ec6b0be5981646.tar.lz cuberite-15b92af166e03e3deb8baf5eb2ec6b0be5981646.tar.xz cuberite-15b92af166e03e3deb8baf5eb2ec6b0be5981646.tar.zst cuberite-15b92af166e03e3deb8baf5eb2ec6b0be5981646.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockBed.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Blocks/BlockBed.h b/src/Blocks/BlockBed.h index 8a289b22c..2004effb5 100644 --- a/src/Blocks/BlockBed.h +++ b/src/Blocks/BlockBed.h @@ -2,7 +2,8 @@ #pragma once #include "BlockHandler.h" -#include "../World.h" +#include "ChunkInterface.h" +#include "WorldInterface.h" #include "../Entities/Player.h" @@ -19,9 +20,9 @@ public: } - virtual void OnPlacedByPlayer(cWorld * a_World, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta) override; - virtual void OnDestroyed(cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ) override; - virtual void OnUse(cWorld * a_World, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ) override; + virtual void OnPlacedByPlayer(cChunkInterface * a_ChunkInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta) override; + virtual void OnDestroyed(cChunkInterface * a_ChunkInterface, int a_BlockX, int a_BlockY, int a_BlockZ) override; + virtual void OnUse(cChunkInterface * a_ChunkInterface, cWorldInterface * a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ) override; virtual bool IsUseable(void) override |