GC-Proto/proto/QueryPathReq.proto

29 lines
595 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";
2022-11-06 15:30:21 +03:00
2023-04-03 09:51:55 +03:00
import "QueryFilter.proto";
import "Vector.proto";
2023-02-28 04:12:44 +03:00
import "Vector3Int.proto";
2023-04-11 06:14:48 +03:00
// CmdId: 2390
// Name: PPNEGEHHFHC
2022-11-06 15:30:21 +03:00
message QueryPathReq {
2023-04-11 06:14:48 +03:00
// Name: GFGAGCEANNG
2023-04-03 09:51:55 +03:00
enum OptionType {
2023-04-11 06:14:48 +03:00
OPTION_NONE = 0;
OPTION_NORMAL = 1;
OPTION_FIRST_CAN_GO = 2;
2023-02-28 04:12:44 +03:00
}
2022-12-05 15:02:30 +03:00
2023-04-11 06:14:48 +03:00
Vector source_pos = 7;
QueryFilter filter = 10;
repeated Vector destination_pos = 2;
int32 query_id = 15;
Vector3Int FOJHBGHIMDG = 3;
uint32 scene_id = 9;
OptionType query_type = 14;
Vector3Int LCOAPOJGMKL = 6;
2022-11-06 15:30:21 +03:00
}
2023-02-28 04:12:44 +03:00