mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
17 lines
308 B
Protocol Buffer
17 lines
308 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "FishEscapeReason.proto";
|
|
import "Vector.proto";
|
|
|
|
// Name: KGMGCMOOMOG
|
|
// CmdId: 5832
|
|
message FishEscapeNotify {
|
|
Vector pos = 2;
|
|
uint32 uid = 11;
|
|
repeated uint32 fish_id_list = 7;
|
|
FishEscapeReason reason = 12;
|
|
}
|
|
|