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