GC-Proto/proto/MultistagePlaySettleNotify.proto
2023-04-11 11:14:48 +08:00

21 lines
555 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "InBattleChessSettleInfo.proto";
import "InBattleIrodoriChessSettleInfo.proto";
import "InBattleMechanicusSettleInfo.proto";
// CmdId: 5371
// Name: GKHKOEMINHA
message MultistagePlaySettleNotify {
uint32 play_index = 3;
uint32 group_id = 4;
oneof detail {
InBattleMechanicusSettleInfo mechanicus_settle_info = 1266;
InBattleChessSettleInfo chess_settle_info = 121;
InBattleIrodoriChessSettleInfo irodori_chess_settle_info = 671;
}
}