mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-26 15:02:54 +08:00
22 lines
404 B
Protocol Buffer
22 lines
404 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// CmdId: 2331
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message QueryPathRsp {
|
|
int32 retcode = 14;
|
|
int32 query_id = 2;
|
|
PathStatusType query_status = 5;
|
|
repeated Vector corners = 12;
|
|
|
|
enum PathStatusType {
|
|
PATH_STATUS_TYPE_FAIL = 0;
|
|
PATH_STATUS_TYPE_SUCC = 1;
|
|
PATH_STATUS_TYPE_PARTIAL = 2;
|
|
}
|
|
}
|