GC-Proto/proto/ScenePlayBattleResultNotify.proto

19 lines
494 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 "ScenePlayBattleSettlePlayerInfo.proto";
2023-02-28 04:12:44 +03:00
import "ScenePlayBattleSettleRewardInfo.proto";
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
// CmdId: 4362
// Name: DAJCIMDMJBD
2023-02-18 04:48:44 +03:00
message ScenePlayBattleResultNotify {
2023-04-11 06:14:48 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00