GC-Proto/proto/OneoffGatherPointDetectorDa...

18 lines
374 B
Protocol Buffer
Raw Normal View History

2023-08-22 20:09:33 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "OneoffGatherPointDetectorData.proto";
message OneoffGatherPointDetectorDataNotify {
2023-08-22 20:34:44 +03:00
enum CmdId {
option allow_alias = true;
NONE = 0;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
CMD_ID = 4262;
}
2023-08-22 20:23:37 +03:00
repeated OneoffGatherPointDetectorData oneoff_gather_point_detector_data_list = 6;
2023-08-22 20:09:33 +03:00
}