summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemCloth.h
blob: 149bd642b851f42f6ad5f9095e38087e2502da5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#pragma once

#include "ItemHandler.h"





class cItemClothHandler final :
	public cItemHandler
{
public:
	constexpr cItemClothHandler(int a_ItemType)
		: cItemHandler(a_ItemType)
	{

	}
} ;