diff --git a/SocketMessage.proto b/SocketMessage.proto new file mode 100644 index 0000000..cdabbd7 --- /dev/null +++ b/SocketMessage.proto @@ -0,0 +1,15 @@ +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; + } +} \ No newline at end of file