X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcommon%2FGameState.cpp;fp=src%2Fcommon%2FGameState.cpp;h=7992d43980e0a9888835e3c7dba8793079e8b4ed;hb=06b6411e5dc8fc6b905530f7adbde8bd0c2bb0ea;hp=0000000000000000000000000000000000000000;hpb=e02068d51f5e7f82d4d3195e9a9ce5c9d76f727d;p=l2e.git diff --git a/src/common/GameState.cpp b/src/common/GameState.cpp new file mode 100644 index 0000000..7992d43 --- /dev/null +++ b/src/common/GameState.cpp @@ -0,0 +1,20 @@ +/* + * GameState.cpp + * + * Created on: Oct 7, 2012 + * Author: holy + */ + +#include "GameState.h" + +namespace common { + +GameState::GameState() +: money(0) { + party[0] = heroes; + party[1] = 0; + party[2] = 0; + party[3] = 0; +} + +}