mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
307 B
Protocol Buffer
17 lines
307 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "HuntingPair.proto";
|
|
import "Vector.proto";
|
|
|
|
// CmdId: 4345
|
|
// Name: CKGLOBELCOC
|
|
message HuntingStartNotify {
|
|
uint32 fail_time = 10;
|
|
Vector clue_position = 4;
|
|
HuntingPair hunting_pair = 15;
|
|
bool is_final = 1;
|
|
}
|
|
|