From b040abe70918c188597db69a0a9202141a7eaff1 Mon Sep 17 00:00:00 2001 From: MaximZaitsev Date: Thu, 14 Jul 2016 13:20:07 +0300 Subject: [PATCH] corrected proto route file --- proto/server_car/route.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/proto/server_car/route.proto b/proto/server_car/route.proto index 8f9fbd517ed..50ac625c415 100644 --- a/proto/server_car/route.proto +++ b/proto/server_car/route.proto @@ -12,3 +12,14 @@ message Route { double angle_delta = 3; } } + +message Direction { + enum Command { + stop = 0; + forward = 1; + backward = 2; + left = 3; + right = 4; + } + Command command = 1; +}