15 lines
240 B
Protocol Buffer
15 lines
240 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package ScStw;
|
||
|
|
||
|
import "RaceState.proto";
|
||
|
import "Command.proto";
|
||
|
import "Settings.proto";
|
||
|
|
||
|
message SocketMessage {
|
||
|
oneof message {
|
||
|
RaceState raceState = 1;
|
||
|
Command command = 2;
|
||
|
Settings settings = 3;
|
||
|
}
|
||
|
}
|