summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockFlower.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockFlower.h')
-rw-r--r--source/blocks/BlockFlower.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/source/blocks/BlockFlower.h b/source/blocks/BlockFlower.h
deleted file mode 100644
index 35a55fcac..000000000
--- a/source/blocks/BlockFlower.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#pragma once
-#include "BlockHandler.h"
-
-
-class cBlockFlowerHandler : public cBlockHandler
-{
-public:
- cBlockFlowerHandler(BLOCKTYPE a_BlockID)
- : cBlockHandler(a_BlockID)
- {
- }
-
- virtual NIBBLETYPE GetDropMeta(NIBBLETYPE a_BlockMeta) override
- {
- return 0;
- }
-
- virtual bool CanBeAt(cWorld *a_World, int a_X, int a_Y, int a_Z) override
- {
- return IsBlockTypeOfDirt(a_World->GetBlock(a_X, a_Y - 1, a_Z));
- }
-
- virtual bool AllowBlockOnTop() override
- {
- return false;
- }
-
- virtual bool CanBePlacedOnSide() override
- {
- return false;
- }
-
- virtual AString GetStepSound(void) override
- {
- return "step.grass";
- }
-
-};