diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-07-29 14:07:22 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-07-29 14:07:22 +0200 |
commit | 9dc0e3c2335fa6aacd0974b161bd96772639bf52 (patch) | |
tree | 28381c0f45393be618e31c8475a049520128cb71 /source/items/ItemCloth.h | |
parent | Fixed warnings in md5 (diff) | |
download | cuberite-9dc0e3c2335fa6aacd0974b161bd96772639bf52.tar cuberite-9dc0e3c2335fa6aacd0974b161bd96772639bf52.tar.gz cuberite-9dc0e3c2335fa6aacd0974b161bd96772639bf52.tar.bz2 cuberite-9dc0e3c2335fa6aacd0974b161bd96772639bf52.tar.lz cuberite-9dc0e3c2335fa6aacd0974b161bd96772639bf52.tar.xz cuberite-9dc0e3c2335fa6aacd0974b161bd96772639bf52.tar.zst cuberite-9dc0e3c2335fa6aacd0974b161bd96772639bf52.zip |
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 +} ;
+
+
+
+
|