mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +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";
|
|
|
|
// CmdId: 5822
|
|
// Name: JNCACPJKIEH
|
|
message FishEscapeNotify {
|
|
FishEscapeReason reason = 10;
|
|
uint32 uid = 1;
|
|
repeated uint32 fish_id_list = 12;
|
|
Vector pos = 9;
|
|
}
|
|
|