diff options
Diffstat (limited to 'source/Items/ItemCloth.h')
-rw-r--r-- | source/Items/ItemCloth.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/source/Items/ItemCloth.h b/source/Items/ItemCloth.h new file mode 100644 index 000000000..5de064397 --- /dev/null +++ b/source/Items/ItemCloth.h @@ -0,0 +1,23 @@ +
+#pragma once
+
+#include "ItemHandler.h"
+
+
+
+
+
+class cItemClothHandler :
+ public cItemHandler
+{
+public:
+ cItemClothHandler(int a_ItemID)
+ : cItemHandler(a_ItemID)
+ {
+
+ }
+} ;
+
+
+
+
|