1
0
mirror of https://gitlab.com/YuukiPS/GC-Proto.git synced 2025-04-07 01:26:08 +03:00
GC-Proto/proto/SceneRouteChangeInfo.proto
2023-02-28 11:08:38 +08:00

15 lines
287 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "RoutePointChangeInfo.proto";
// Name: NFBAMPAFEIG
message SceneRouteChangeInfo {
uint32 type = 12;
bool is_forward = 5;
uint32 route_id = 2;
repeated RoutePointChangeInfo point_list = 1;
}