10 lines
239 B
Protocol Buffer
10 lines
239 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
import "RoutePoint.proto";
|
||
|
option csharp_namespace = "FurinaImpact.Protocol";
|
||
|
message MonsterRoute {
|
||
|
repeated RoutePoint route_points = 1;
|
||
|
float arrive_range = 4;
|
||
|
uint32 speed_level = 2;
|
||
|
uint32 route_type = 3;
|
||
|
}
|