mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
19 lines
369 B
Protocol Buffer
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;
|
|
}
|
|
|