diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-09 17:16:07 +0200 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-09 17:16:07 +0200 |
commit | 3ccba12e390dc83b08393ad922b91825be2eedb7 (patch) | |
tree | 4ca54cf9aac85b7e78e5c282cbcef899912168ae /source/Blocks/BlockDeadBush.h | |
parent | ProtectionAreas: Added asserts to cStorage functions so that logic errors are found faster (diff) | |
download | cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.gz cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.bz2 cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.lz cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.xz cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.zst cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.zip |
Diffstat (limited to 'source/Blocks/BlockDeadBush.h')
-rw-r--r-- | source/Blocks/BlockDeadBush.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/source/Blocks/BlockDeadBush.h b/source/Blocks/BlockDeadBush.h new file mode 100644 index 000000000..cfa872b2c --- /dev/null +++ b/source/Blocks/BlockDeadBush.h @@ -0,0 +1,47 @@ +
+#pragma once
+
+#include "BlockHandler.h"
+#include "../World.h"
+
+
+
+
+
+class cBlockDeadBushHandler :
+ public cBlockHandler
+{
+public:
+ cBlockDeadBushHandler(BLOCKTYPE a_BlockType)
+ : cBlockHandler(a_BlockType)
+ {
+ }
+
+
+ virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
+ {
+ a_Pickups.push_back(cItem(E_BLOCK_DEAD_BUSH, 1, a_BlockMeta));
+ }
+
+
+ virtual bool CanBeAt(int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
+ {
+ return (a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) == E_BLOCK_SAND);
+ }
+
+
+ virtual bool DoesAllowBlockOnTop(void) override
+ {
+ return false;
+ }
+
+
+ virtual bool CanBePlacedOnSide() override
+ {
+ return false;
+ }
+} ;
+
+
+
+
|