mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 00:34:36 +03:00
19 lines
493 B
Protocol Buffer
19 lines
493 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ScenePlayBattleSettlePlayerInfo.proto";
|
|
import "ScenePlayBattleSettleRewardInfo.proto";
|
|
|
|
// Name: CIKJLLFFAFK
|
|
// CmdId: 4441
|
|
message ScenePlayBattleResultNotify {
|
|
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;
|
|
}
|
|
|