summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockCloth.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockCloth.h')
-rw-r--r--source/blocks/BlockCloth.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/source/blocks/BlockCloth.h b/source/blocks/BlockCloth.h
deleted file mode 100644
index 452ad2237..000000000
--- a/source/blocks/BlockCloth.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#pragma once
-#include "BlockHandler.h"
-
-
-class cBlockClothHandler : public cBlockHandler
-{
-public:
- cBlockClothHandler(BLOCKTYPE a_BlockID)
- : cBlockHandler(a_BlockID)
- {
- }
-
- virtual NIBBLETYPE GetDropMeta(NIBBLETYPE a_BlockMeta) override
- {
- return a_BlockMeta;
- }
-
- virtual AString GetStepSound(void) override
- {
- return "step.cloth";
- }
-
-};