mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-08-03 02:50:13 +03:00
Update 3.3 (wow, a lot changed)
This commit is contained in:
@@ -21,20 +21,25 @@ import "Vector.proto";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
// CmdId: 6198
|
||||
// EnetChannelId: 0
|
||||
// EnetIsReliable: true
|
||||
message ToTheMoonQueryPathRsp {
|
||||
PathStatusType query_status = 7;
|
||||
repeated int64 index = 3;
|
||||
repeated Vector corners = 14;
|
||||
repeated int32 level = 1;
|
||||
int32 retcode = 8;
|
||||
int32 query_id = 9;
|
||||
// enum CmdId {
|
||||
// option allow_alias = true;
|
||||
// NONE = 0;
|
||||
// CMD_ID = 6130;
|
||||
// ENET_CHANNEL_ID = 0;
|
||||
// ENET_IS_RELIABLE = 1;
|
||||
// }
|
||||
|
||||
enum PathStatusType {
|
||||
PATH_STATUS_TYPE_FAIL = 0;
|
||||
PATH_STATUS_TYPE_SUCC = 1;
|
||||
PATH_STATUS_TYPE_PARTIAL = 2;
|
||||
}
|
||||
|
||||
repeated int64 index = 5;
|
||||
repeated Vector corners = 3;
|
||||
int32 query_id = 15;
|
||||
int32 retcode = 10;
|
||||
repeated int32 level = 8;
|
||||
PathStatusType query_status = 14;
|
||||
}
|
||||
|
Reference in New Issue
Block a user