diff options
Diffstat (limited to 'source/items/ItemCloth.h')
-rw-r--r-- | source/items/ItemCloth.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/source/items/ItemCloth.h b/source/items/ItemCloth.h index ead4ee84a..d67e14864 100644 --- a/source/items/ItemCloth.h +++ b/source/items/ItemCloth.h @@ -1,9 +1,14 @@ +
#pragma once
#include "Item.h"
-class cItemClothHandler : public cItemHandler
+
+
+
+class cItemClothHandler :
+ public cItemHandler
{
public:
cItemClothHandler(int a_ItemID)
@@ -11,8 +16,8 @@ public: {
}
- virtual NIBBLETYPE GetBlockMeta(NIBBLETYPE a_ItemMeta) override
- {
- return a_ItemMeta;
- }
-};
\ No newline at end of file +} ;
+
+
+
+
|