mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
17 lines
313 B
Protocol Buffer
17 lines
313 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: NKPCEHIAFBE
|
|
// CmdId: 807
|
|
message GadgetPlayUidOpNotify {
|
|
uint32 entity_id = 10;
|
|
uint32 play_type = 3;
|
|
repeated uint32 uid_list = 12;
|
|
uint32 op = 11;
|
|
repeated uint32 param_list = 6;
|
|
string param_str = 9;
|
|
}
|
|
|