mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
19 lines
376 B
Protocol Buffer
19 lines
376 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PathStatusType.proto";
|
|
import "Vector.proto";
|
|
|
|
// Name: FFFLALIGOHD
|
|
// CmdId: 6175
|
|
message ToTheMoonQueryPathRsp {
|
|
PathStatusType query_status = 6;
|
|
int32 retcode = 13;
|
|
repeated int64 index = 5;
|
|
int32 query_id = 9;
|
|
repeated Vector corners = 3;
|
|
repeated int32 level = 7;
|
|
}
|
|
|