]> git.localhorst.tv Git - l2e.git/blob - src/battle/Hero.cpp
added initializer lists to Hero and Monster models
[l2e.git] / src / battle / Hero.cpp
1 /*
2  * Hero.cpp
3  *
4  *  Created on: Aug 6, 2012
5  *      Author: holy
6  */
7
8 #include "Hero.h"
9
10 namespace battle {
11
12 Hero::Hero()
13 : name("")
14 , sprite(0)
15
16 , maxHealth(0)
17 , health(0)
18 , maxMana(0)
19 , mana(0)
20
21 , attack(0)
22 , defense(0)
23 , agility(0)
24 , intelligence(0)
25 , gut(0)
26 , magicResistance(0)
27
28 , level(0)
29 , ip(0) {
30
31 }
32
33 Hero::~Hero() {
34
35 }
36
37 }