GC-Proto/proto/ScenePlayBattleResultNotify.proto

19 lines
493 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-02-28 04:12:44 +03:00
// Name: CIKJLLFFAFK
// CmdId: 4441
2023-02-18 04:48:44 +03:00
message ScenePlayBattleResultNotify {
2023-02-28 04:12:44 +03:00
uint32 cost_time = 7;
uint32 play_id = 12;
uint32 play_type = 10;
repeated ScenePlayBattleSettleRewardInfo settle_reward_info_list = 4;
repeated ScenePlayBattleSettlePlayerInfo settle_player_info_list = 2;
bool is_win = 6;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00