summaryrefslogtreecommitdiff
path: root/server/game.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-12-05 07:53:43 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-12-05 07:53:43 +0100
commit80f1bf82e311b6d1ef9f3df9162235b0ce00cdb8 (patch)
treefc60c13430ed80631c5b55795a7e4e33b3e91c7e /server/game.h
parent4e5c27a098b01457a8582505d6a46338a0165b44 (diff)
Use Set to store open sets on server. Send actions to extend open kans.
Diffstat (limited to 'server/game.h')
-rw-r--r--server/game.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/game.h b/server/game.h
index bf7d37f..fca71fa 100644
--- a/server/game.h
+++ b/server/game.h
@@ -9,6 +9,7 @@
#include "wall.h"
#include "client.h"
#include "../common/action.h"
+#include "../common/set.h"
#include "../common/state.h"
#include "../common/cyclicint.h"
@@ -28,7 +29,7 @@ class Game : public boost::enable_shared_from_this<Game> {
ClientBase::p client;
Tiles hand;
- Tilegroups open;
+ Sets open;
Tiles pond;
bool riichi;
int score;