GC-Proto/proto/QueryPathReq.proto

25 lines
501 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-06-23 18:33:14 +03:00
import "Vector.proto";
import "Vector3Int.proto";
2023-08-17 14:18:58 +03:00
import "QueryFilter.proto";
2024-06-23 18:33:14 +03:00
// 4.7.0
2022-11-06 15:30:21 +03:00
message QueryPathReq {
2024-06-23 18:33:14 +03:00
enum OptionType {
2023-05-23 13:12:42 +03:00
OPTION_NONE = 0;
OPTION_NORMAL = 1;
OPTION_FIRST_CAN_GO = 2;
}
2024-06-23 18:33:14 +03:00
repeated Vector destination_pos = 2;
OptionType query_type = 3;
uint32 scene_id = 4;
Vector source_pos = 5;
Vector3Int ANCGPGGGOAJ = 8;
Vector3Int IFMLKJBFKDK = 9;
int32 query_id = 14;
QueryFilter filter = 15;
2022-11-06 15:30:21 +03:00
}