diff options
Diffstat (limited to '')
-rw-r--r-- | source/items/ItemCloth.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/items/ItemCloth.h b/source/items/ItemCloth.h new file mode 100644 index 000000000..805e90cb4 --- /dev/null +++ b/source/items/ItemCloth.h @@ -0,0 +1,18 @@ +#pragma once
+
+#include "Item.h"
+
+
+class cItemClothHandler : public cItemHandler
+{
+public:
+ cItemClothHandler(int a_ItemID)
+ : cItemHandler(a_ItemID)
+ {
+
+ }
+ virtual char GetBlockMeta(char a_ItemMeta)
+ {
+ return a_ItemMeta;
+ }
+};
\ No newline at end of file |