]> git.localhorst.tv Git - l2e.git/blobdiff - src/common/GameState.cpp
moved Hero and Stats to common
[l2e.git] / src / common / GameState.cpp
diff --git a/src/common/GameState.cpp b/src/common/GameState.cpp
new file mode 100644 (file)
index 0000000..7992d43
--- /dev/null
@@ -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;
+}
+
+}