Added ui-related protofiles
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
message Result {
|
||||
int32 errorCode = 1;
|
||||
}
|
||||
|
||||
message GenericResponse {
|
||||
Result result = 1;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
message ModeChange {
|
||||
enum Mode {
|
||||
ManualControl = 0;
|
||||
PerimeterBuilding = 1;
|
||||
}
|
||||
|
||||
Mode newMode = 1;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
message Waypoints {
|
||||
repeated int32 begin_x = 1;
|
||||
repeated int32 begin_y = 2;
|
||||
repeated int32 end_x = 3;
|
||||
repeated int32 end_y = 4;
|
||||
bool stop = 5;
|
||||
}
|
||||
Reference in New Issue
Block a user