GC-Proto/proto/QueryPathReq.proto

23 lines
485 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-03-01 16:54:54 +03:00
import "OptionType.proto";
import "QueryFilter.proto";
import "Vector.proto";
2023-02-28 06:08:38 +03:00
import "Vector3Int.proto";
2023-02-28 06:08:38 +03:00
// Name: ACMGFNOFCKB
// CmdId: 2367
2022-11-06 15:30:21 +03:00
message QueryPathReq {
2023-02-28 06:08:38 +03:00
Vector source_pos = 10;
2023-03-01 16:54:54 +03:00
QueryFilter filter = 3;
2023-02-28 06:08:38 +03:00
Vector3Int APGDHBMJKHO = 12;
Vector3Int JDGEGADKHCL = 6;
2023-03-01 16:54:54 +03:00
OptionType queryType = 13;
2023-02-28 06:08:38 +03:00
int32 query_id = 14;
repeated Vector destination_pos = 15;
uint32 scene_id = 11;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00