summaryrefslogtreecommitdiffstats
path: root/source/items/ItemWood.h
blob: 3254b70ed78e977e44add5f4a660ab11983dece4 (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(char a_ItemMeta) override
	{
		return a_ItemMeta;
	}
};