diff options
Diffstat (limited to 'source/blocks/BlockFlower.h')
-rw-r--r-- | source/blocks/BlockFlower.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/source/blocks/BlockFlower.h b/source/blocks/BlockFlower.h new file mode 100644 index 000000000..12eaa4dc8 --- /dev/null +++ b/source/blocks/BlockFlower.h @@ -0,0 +1,32 @@ +#pragma once
+#include "Block.h"
+
+
+class cBlockFlowerHandler : public cBlockHandler
+{
+public:
+ cBlockFlowerHandler(BLOCKTYPE a_BlockID)
+ : cBlockHandler(a_BlockID)
+ {
+ }
+
+ virtual char GetDropMeta(char a_BlockMeta)
+ {
+ return 0;
+ }
+
+ virtual bool CanBeAt(cWorld *a_World, int a_X, int a_Y, int a_Z)
+ {
+ return IsBlockTypeOfDirt(a_World->GetBlock(a_X, a_Y - 1, a_Z));
+ }
+
+ virtual bool AllowBlockOnTop()
+ {
+ return false;
+ }
+
+ virtual bool CanBePlacedOnSide()
+ {
+ return false;
+ }
+};
\ No newline at end of file |