diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-05 15:10:20 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-05 15:10:20 +0100 |
commit | d4a5b16c52c41da59d2fe3405570653521e5d36e (patch) | |
tree | bbfa7b1b0d7101c9bdf98401c87164def39d4eb2 /src/Blocks/BlockHandler.h | |
parent | Fixed some gcc warnings in Defines.h. (diff) | |
download | cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.gz cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.bz2 cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.lz cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.xz cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.zst cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.zip |
Diffstat (limited to 'src/Blocks/BlockHandler.h')
-rw-r--r-- | src/Blocks/BlockHandler.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Blocks/BlockHandler.h b/src/Blocks/BlockHandler.h index c46a46045..fbb36d96a 100644 --- a/src/Blocks/BlockHandler.h +++ b/src/Blocks/BlockHandler.h @@ -69,6 +69,9 @@ public: /// Called if the user right clicks the block and the block is useable virtual void OnUse(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ); + /** Called when a Right Click to this Block is cancelled */ + virtual void OnCancelRightClick(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace); + /// <summary>Called when the item is mined to convert it into pickups. Pickups may specify multiple items. Appends items to a_Pickups, preserves its original contents</summary> virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta); @@ -80,7 +83,7 @@ public: /// Checks if the block can stay at the specified relative coords in the chunk virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk); - + /** Checks if the block can be placed at this point. Default: CanBeAt(...) NOTE: This call doesn't actually place the block |