summaryrefslogtreecommitdiffstats
path: root/source/items/ItemWood.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/items/ItemWood.h')
-rw-r--r--source/items/ItemWood.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/items/ItemWood.h b/source/items/ItemWood.h
new file mode 100644
index 000000000..91eaa7675
--- /dev/null
+++ b/source/items/ItemWood.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "Item.h"
+
+
+class cItemWoodHandler : public cItemHandler
+{
+public:
+ cItemWoodHandler(int a_ItemID)
+ : cItemHandler(a_ItemID)
+ {
+ }
+ virtual char GetBlockMeta(char a_ItemMeta)
+ {
+ return a_ItemMeta;
+ }
+}; \ No newline at end of file