mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
19 lines
494 B
Protocol Buffer
19 lines
494 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ScenePlayBattleSettlePlayerInfo.proto";
|
|
import "ScenePlayBattleSettleRewardInfo.proto";
|
|
|
|
// CmdId: 4362
|
|
// Name: DAJCIMDMJBD
|
|
message ScenePlayBattleResultNotify {
|
|
bool is_win = 2;
|
|
uint32 cost_time = 6;
|
|
uint32 play_type = 12;
|
|
repeated ScenePlayBattleSettlePlayerInfo settle_player_info_list = 1;
|
|
repeated ScenePlayBattleSettleRewardInfo settle_reward_info_list = 10;
|
|
uint32 play_id = 13;
|
|
}
|
|
|