mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 16:54:37 +03:00
18 lines
348 B
Protocol Buffer
18 lines
348 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GadgetPlayUidInfo.proto";
|
|
|
|
// Name: MNEHIIEMOEA
|
|
// CmdId: 850
|
|
message GadgetPlayStopNotify {
|
|
uint32 cost_time = 12;
|
|
uint32 score = 9;
|
|
repeated GadgetPlayUidInfo uid_info_list = 5;
|
|
uint32 play_type = 7;
|
|
uint32 entity_id = 1;
|
|
bool is_win = 8;
|
|
}
|
|
|