You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
249 B
15 lines
249 B
syntax = "proto3";
|
|
|
|
enum TrackCommand {
|
|
TRACK_COMMAND_STOP = 0;
|
|
TRACK_COMMAND_START = 1;
|
|
TRACK_COMMAND_START_DETECT = 2;
|
|
}
|
|
|
|
message ToggleTrackMessage {
|
|
TrackCommand command = 1;
|
|
int32 x = 2;
|
|
int32 y = 3;
|
|
int32 w = 4;
|
|
int32 h = 5;
|
|
}
|