summaryrefslogtreecommitdiffstats
path: root/pacman-c++/pacman.proto
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-11 02:11:10 +0200
committermanuel <manuel@mausz.at>2011-04-11 02:11:10 +0200
commit57e3e48eb558b73077c2b5b4e531ee1cd75b0fbf (patch)
treeb71c6cf7b777cbf87875940f1b283779c1d2e0db /pacman-c++/pacman.proto
parent817dcc4e4493fb89c6d52b5e5ce1548b6a047d08 (diff)
downloadfoop-57e3e48eb558b73077c2b5b4e531ee1cd75b0fbf.tar.gz
foop-57e3e48eb558b73077c2b5b4e531ee1cd75b0fbf.tar.bz2
foop-57e3e48eb558b73077c2b5b4e531ee1cd75b0fbf.zip
- second cleanup: move game/round points inside array
- order is defined by Color::order[] used by server and client (gui too)
Diffstat (limited to 'pacman-c++/pacman.proto')
-rw-r--r--pacman-c++/pacman.proto8
1 files changed, 2 insertions, 6 deletions
diff --git a/pacman-c++/pacman.proto b/pacman-c++/pacman.proto
index 3a09702..0472697 100644
--- a/pacman-c++/pacman.proto
+++ b/pacman-c++/pacman.proto
@@ -7,12 +7,8 @@ message KeyPressUpdate {
7//TODO move points inside array 7//TODO move points inside array
8message MapUpdate { 8message MapUpdate {
9 repeated uint32 field = 1 [packed=true]; 9 repeated uint32 field = 1 [packed=true];
10 required uint32 round_points_red = 2; 10 repeated uint32 round_points = 2;
11 required uint32 round_points_green = 3; 11 repeated uint32 game_points = 3;
12 required uint32 round_points_blue = 4;
13 required uint32 game_points_red = 5;
14 required uint32 game_points_green = 6;
15 required uint32 game_points_blue = 7;
16} 12}
17 13
18message WhoAmI { 14message WhoAmI {