GC-Proto/proto/GadgetPlayStopNotify.proto

18 lines
348 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "GadgetPlayUidInfo.proto";
2023-02-28 04:12:44 +03:00
// Name: MNEHIIEMOEA
// CmdId: 850
2023-02-18 04:48:44 +03:00
message GadgetPlayStopNotify {
2023-02-28 04:12:44 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00