]> git.localhorst.tv Git - l2e.git/blob - src/common/Item.cpp
added Ikari class
[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 , ikari(0)
17
18 , value(0)
19 , properties(0)
20
21 , usability(0)
22 , equipable(0) {
23
24 }
25
26 }