make new debug proto file for new room model

This commit is contained in:
MaximZaitsev
2016-08-30 16:02:10 +03:00
parent 062e6ad00b
commit 3167ec8e86
@@ -1,15 +1,18 @@
syntax = "proto3";
package carkot;
message DebugResponse {
repeated int32 A = 1 [packed=true];
repeated int32 B = 2 [packed=true];
repeated int32 C = 3 [packed=true];
int32 carX = 4;
int32 carY = 5;
int32 carAngle = 6;
repeated int32 Aref = 7 [packed=true];
repeated int32 Bref = 8 [packed=true];
repeated int32 Cref = 9 [packed=true];
repeated int32 begin_x = 1 [packed = true];
repeated int32 begin_y = 2 [packed = true];
repeated int32 end_x = 3 [packed = true];
repeated int32 end_y = 4 [packed = true];
int32 carX = 5;
int32 carY = 6;
int32 carAngle = 7;
repeated int32 x = 8 [packed = true];
repeated int32 y = 9 [packed = true];
}