GC-Proto/proto/HuntingOngoingNotify.proto
2023-04-11 11:14:48 +08:00

19 lines
369 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "HuntingPair.proto";
import "Vector.proto";
// CmdId: 4336
// Name: FDIOOFPLJBA
message HuntingOngoingNotify {
bool is_final = 6;
uint32 finish_clue_count = 15;
bool is_started = 11;
Vector next_position = 5;
HuntingPair hunting_pair = 2;
uint32 fail_time = 10;
}