19 lines
350 B
Protocol Buffer
19 lines
350 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PathStatusType.proto";
|
|
import "Vector.proto";
|
|
|
|
// CmdId: 2396
|
|
// Name: HHMLOCBABMC
|
|
message QueryPathRsp {
|
|
// Name: AMHEPLPEHOG > PathStatusType
|
|
|
|
PathStatusType query_status = 5;
|
|
int32 query_id = 3;
|
|
repeated Vector corners = 1;
|
|
int32 retcode = 10;
|
|
}
|
|
|