2
0
Fork 0

Feat: add MuteFalseStartSoundCommand

This commit is contained in:
Dorian Zedler 2024-11-20 09:02:55 +01:00
parent ff9ef2ecc1
commit e565e19148
Signed by: dorian
GPG key ID: 989DE36109AFA354

View file

@ -17,6 +17,9 @@ message RebootCommand {}
message SayAtYourMarksCommand {} message SayAtYourMarksCommand {}
// sets the race from FINISHED to FINISHED_MUTED, only works in FINISHED state
message MuteFalseStartSoundCommand {}
message Command { message Command {
oneof command { oneof command {
RaceStartCommand start = 1; RaceStartCommand start = 1;
@ -25,5 +28,6 @@ message Command {
RaceResetCommand reset = 4; RaceResetCommand reset = 4;
RebootCommand reboot = 5; RebootCommand reboot = 5;
SayAtYourMarksCommand sayAtYourMarks = 6; SayAtYourMarksCommand sayAtYourMarks = 6;
MuteFalseStartSoundCommand muteFalseStartSound = 7;
} }
} }