summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockMelon.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockMelon.h')
-rw-r--r--source/blocks/BlockMelon.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/source/blocks/BlockMelon.h b/source/blocks/BlockMelon.h
deleted file mode 100644
index 87fb7e1e8..000000000
--- a/source/blocks/BlockMelon.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#pragma once
-#include "BlockHandler.h"
-
-
-class cBlockMelonHandler : public cBlockHandler
-{
-public:
- cBlockMelonHandler(BLOCKTYPE a_BlockID)
- : cBlockHandler(a_BlockID)
- {
- }
-
-
- virtual int GetDropID() override
- {
- return E_ITEM_MELON_SLICE;
- }
-
- virtual char GetDropCount() override
- {
- MTRand r1;
- return (char)(3 + r1.randInt(4));
- }
-
- virtual AString GetStepSound(void) override
- {
- return "step.wood";
- }
-};