2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-06-23 18:33:14 +03:00
|
|
|
|
2023-03-07 05:02:26 +03:00
|
|
|
import "Vector.proto";
|
2024-06-23 18:33:14 +03:00
|
|
|
import "PathStatusType.proto";
|
|
|
|
|
|
|
|
// 4.7.0
|
2023-08-17 14:18:58 +03:00
|
|
|
message QueryPathRsp {
|
2024-06-23 18:33:14 +03:00
|
|
|
repeated Vector corners = 2;
|
|
|
|
int32 query_id = 5;
|
|
|
|
int32 retcode = 7;
|
|
|
|
PathStatusType query_status = 15;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|