GC-Proto/proto/Route.proto

9 lines
198 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "RoutePoint.proto";
2023-08-17 14:18:58 +03:00
// Obf: GPFODIPKJPN
2022-11-06 15:30:21 +03:00
message Route {
repeated RoutePoint route_points = 1;
uint32 route_type = 2;
2022-11-06 15:30:21 +03:00
}