blob: cdee8e6d107a4104ac11d0e847868e3f1714c5d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "ItemHandler.h"
class cItemClothHandler final : public cItemHandler
{
public:
constexpr cItemClothHandler(int a_ItemType) :
cItemHandler(a_ItemType)
{
}
};
|