summaryrefslogtreecommitdiffstats
path: root/source/items/ItemWood.h
blob: 13aba198d83bf40e73d8e532a2f8f192eeeed0db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "Item.h"


class cItemWoodHandler : public cItemHandler
{
public:
	cItemWoodHandler(int a_ItemID)
		: cItemHandler(a_ItemID)
	{
	}
	virtual NIBBLETYPE GetBlockMeta(NIBBLETYPE a_ItemMeta) override
	{
		return a_ItemMeta;
	}
};