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/ItemWood.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/ItemWood.h')
-rw-r--r-- | source/items/ItemWood.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/source/items/ItemWood.h b/source/items/ItemWood.h index 13aba198d..7e874efc2 100644 --- a/source/items/ItemWood.h +++ b/source/items/ItemWood.h @@ -1,17 +1,22 @@ +
#pragma once
#include "Item.h"
-class cItemWoodHandler : public cItemHandler
+
+
+
+class cItemWoodHandler :
+ public cItemHandler
{
public:
cItemWoodHandler(int a_ItemID)
: cItemHandler(a_ItemID)
{
}
- virtual NIBBLETYPE GetBlockMeta(NIBBLETYPE a_ItemMeta) override
- {
- return a_ItemMeta;
- }
-};
\ No newline at end of file +} ;
+
+
+
+
|