summaryrefslogtreecommitdiff
path: root/common/message.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-11-25 16:51:22 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-11-25 16:51:22 +0100
commit90d77e977fe0db416a260c286b36079ab0694f21 (patch)
treeb7db6020cebae4af111360fef8bca5b19fa2af2c /common/message.h
parent825614edeb97f753215bc33fb33600be9d7884b2 (diff)
Changed contents of Message::RoundState. Made relevant changes to client.
Diffstat (limited to 'common/message.h')
-rw-r--r--common/message.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/common/message.h b/common/message.h
index 69135fe..cb709af 100644
--- a/common/message.h
+++ b/common/message.h
@@ -140,11 +140,16 @@ namespace Message {
typedef boost::shared_ptr<RoundState> p;
RoundState();
- RoundState(State state_);
+ RoundState(State state);
+
+ Tiles hand[4];
+ Tiles open[4];
+ Tiles pond[4];
- State state;
Tiles dora;
+ Actions possible_actions;
+
virtual void serialize(boost::archive::text_oarchive& ar);
virtual void deserialize(boost::archive::text_iarchive& ar);
};