mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
21 lines
555 B
Protocol Buffer
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;
|
|
}
|
|
}
|
|
|