8 lines
180 B
Protocol Buffer
8 lines
180 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
import "RoutePoint.proto";
|
||
|
option csharp_namespace = "FurinaImpact.Protocol";
|
||
|
message Route {
|
||
|
repeated RoutePoint route_points = 1;
|
||
|
uint32 route_type = 2;
|
||
|
}
|