]> git.localhorst.tv Git - l2e.git/blob - src/common/Item.cpp
added spells
[l2e.git] / src / common / Item.cpp
1 /*
2  * Item.cpp
3  *
4  *  Created on: Aug 9, 2012
5  *      Author: holy
6  */
7
8 #include "Item.h"
9
10 namespace common {
11
12 Item::Item()
13 : name("")
14 , menuIcon(0)
15 , chestIcon(0)
16
17 , value(0)
18 , properties(0)
19
20 , usability(0)
21 , equipable(0) {
22
23 }
24
25 }