summaryrefslogtreecommitdiffstats
path: root/pacman-c++/pacman.proto
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-12 20:23:33 +0200
committermanuel <manuel@mausz.at>2011-04-12 20:23:33 +0200
commit6af8e7795da1e86745364af1538fa76d4e0fc07e (patch)
tree815ea747b9249a3a7ee10040c31da45c9af48fb1 /pacman-c++/pacman.proto
parentea20d11fdaf383eab6269d5aae2558fd15c5c29e (diff)
downloadfoop-6af8e7795da1e86745364af1538fa76d4e0fc07e.tar.gz
foop-6af8e7795da1e86745364af1538fa76d4e0fc07e.tar.bz2
foop-6af8e7795da1e86745364af1538fa76d4e0fc07e.zip
minor improvments: better debug messages + no tabs :D
Diffstat (limited to 'pacman-c++/pacman.proto')
-rw-r--r--pacman-c++/pacman.proto10
1 files changed, 5 insertions, 5 deletions
diff --git a/pacman-c++/pacman.proto b/pacman-c++/pacman.proto
index 0472697..40c7af0 100644
--- a/pacman-c++/pacman.proto
+++ b/pacman-c++/pacman.proto
@@ -1,16 +1,16 @@
1package ProtoBuf; 1package ProtoBuf;
2 2
3message KeyPressUpdate { 3message KeyPressUpdate {
4 required uint32 newKey = 1; 4 required uint32 newKey = 1;
5} 5}
6 6
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 repeated uint32 round_points = 2; 10 repeated uint32 round_points = 2;
11 repeated uint32 game_points = 3; 11 repeated uint32 game_points = 3;
12} 12}
13 13
14message WhoAmI { 14message WhoAmI {
15 required uint32 color = 1; 15 required uint32 color = 1;
16} 16}