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

#include "Item.h"


class cItemClothHandler : public cItemHandler
{
public:
	cItemClothHandler(int a_ItemID)
		: cItemHandler(a_ItemID)
	{

	}
	virtual char GetBlockMeta(char a_ItemMeta)
	{
		return a_ItemMeta;
	}
};