]> git.localhorst.tv Git - l2e.git/blob - src/common/GameState.cpp
2d9fd3e72ff6ac00f7a491d73dd165a44ec1ac8f
[l2e.git] / src / common / GameState.cpp
1 #include "GameState.h"
2
3 namespace common {
4
5 GameState::GameState()
6 : partySize(1)
7 , money(0)
8 , time(0)
9 , messageSpeed(MESSAGE_SPEED_NORMAL)
10 , battleCursor(CURSOR_CLEAR)
11 , statusCursor(CURSOR_CLEAR)
12 , music(MUSIC_STEREO) {
13         party[0] = heroes;
14         party[1] = 0;
15         party[2] = 0;
16         party[3] = 0;
17 }
18
19 }