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.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/source/blocks/BlockCloth.h b/source/blocks/BlockCloth.h
new file mode 100644
index 000000000..dca7184cb
--- /dev/null
+++ b/source/blocks/BlockCloth.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "Block.h"
+
+
+class cBlockClothHandler : public cBlockHandler
+{
+public:
+ cBlockClothHandler(BLOCKTYPE a_BlockID);
+ char GetDropMeta(char a_BlockMeta)
+ {
+ return a_BlockMeta;
+ }
+
+}; \ No newline at end of file