16 lines
322 B
Protocol Buffer
16 lines
322 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PathStatusType.proto";
|
|
import "Vector.proto";
|
|
|
|
message ToTheMoonQueryPathRsp {
|
|
int32 queryId = 11;
|
|
PathStatusType queryStatus = 15;
|
|
repeated int64 index = 10;
|
|
int32 retcode = 1;
|
|
repeated Vector corners = 3;
|
|
repeated int32 level = 13;
|
|
}
|