]> git.localhorst.tv Git - l2e.git/blob - src/common/GameState.cpp
480c305e94007441cb8ed137cd9f6fe3430ef6f5
[l2e.git] / src / common / GameState.cpp
1 /*
2  * GameState.cpp
3  *
4  *  Created on: Oct 7, 2012
5  *      Author: holy
6  */
7
8 #include "GameState.h"
9
10 namespace common {
11
12 GameState::GameState()
13 : partySize(1)
14 , money(0)
15 , time(0)
16 , messageSpeed(MESSAGE_SPEED_NORMAL)
17 , battleCursor(CURSOR_CLEAR)
18 , statusCursor(CURSOR_CLEAR)
19 , music(MUSIC_STEREO) {
20         party[0] = heroes;
21         party[1] = 0;
22         party[2] = 0;
23         party[3] = 0;
24 }
25
26 }