2
0
Fork 0
proto/RaceCommand.proto

20 lines
340 B
Protocol Buffer
Raw Normal View History

2023-10-14 17:23:56 +02:00
syntax = "proto3";
package ScStw;
message StartCommand {}
message DisableCommand { uint32 laneNumber = 1; }
message FallCommand { uint32 laneNumber = 1; }
message ResetCommand {}
message Command {
oneof Command {
StartCommand start = 1;
DisableCommand disable = 2;
FallCommand fall = 3;
ResetCommand reset = 4;
}
}