mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 20:34:49 +00:00
13 lines
238 B
Protocol Buffer
13 lines
238 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "RoutePoint.proto";
|
||
|
|
||
|
message MonsterRoute {
|
||
|
repeated RoutePoint route_points = 1;
|
||
|
uint32 speed_level = 2;
|
||
|
uint32 route_type = 3;
|
||
|
float arrive_range = 4;
|
||
|
}
|