GC-Proto/proto/MonsterRoute.proto

13 lines
238 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-08-22 20:09:33 +03:00
import "RoutePoint.proto";
2022-11-06 15:30:21 +03:00
message MonsterRoute {
2023-08-22 20:09:33 +03:00
repeated RoutePoint route_points = 1;
uint32 speed_level = 2;
uint32 route_type = 3;
float arrive_range = 4;
2022-11-06 15:30:21 +03:00
}