2
0
Fork 0

Feat: add SayAtYourMarksCommand

This commit is contained in:
Dorian Zedler 2024-11-14 14:05:04 +01:00
parent cc297e9247
commit ff9ef2ecc1
Signed by: dorian
GPG key ID: 989DE36109AFA354

View file

@ -15,6 +15,8 @@ message RaceResetCommand {}
message RebootCommand {} message RebootCommand {}
message SayAtYourMarksCommand {}
message Command { message Command {
oneof command { oneof command {
RaceStartCommand start = 1; RaceStartCommand start = 1;
@ -22,5 +24,6 @@ message Command {
LaneSetFallCommand fall = 3; LaneSetFallCommand fall = 3;
RaceResetCommand reset = 4; RaceResetCommand reset = 4;
RebootCommand reboot = 5; RebootCommand reboot = 5;
SayAtYourMarksCommand sayAtYourMarks = 6;
} }
} }