summaryrefslogtreecommitdiffstats
path: root/Game.cpp
diff options
context:
space:
mode:
authorJoachim Jablon <mario@notk.org>2011-11-25 02:16:50 +0100
committerasmadeus <asmadeus@fenrir.codewreck.org>2011-11-25 02:16:50 +0100
commita1a50e36935c3d956c682f804bb59f128ae68792 (patch)
tree78bce8038a442b1820f395f38cad4b2da6c87b6f /Game.cpp
initial commit
Diffstat (limited to 'Game.cpp')
-rw-r--r--Game.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/Game.cpp b/Game.cpp
new file mode 100644
index 0000000..d2c79e4
--- /dev/null
+++ b/Game.cpp
@@ -0,0 +1,17 @@
+#include "Game.h"
+
+Game::Game(uint width, uint height, PlayerNumber num):
+ m_Field(width, height)
+{
+ m_vPlayers.resize(num);
+ for(PlayerNumber i = 0; i<num; ++i)
+ {
+
+
+ }
+}
+
+
+Game::~Game(void)
+{
+}