GC-Proto/proto/MultistagePlaySettleNotify.proto

21 lines
557 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
import "InBattleChessSettleInfo.proto";
import "InBattleIrodoriChessSettleInfo.proto";
import "InBattleMechanicusSettleInfo.proto";
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
// Name: HAHMKAKECFP
// CmdId: 5348
2023-02-18 04:48:44 +03:00
message MultistagePlaySettleNotify {
2023-02-28 04:12:44 +03:00
uint32 play_index = 11;
uint32 group_id = 13;
oneof detail {
InBattleMechanicusSettleInfo mechanicus_settle_info = 137;
InBattleChessSettleInfo chess_settle_info = 1316;
InBattleIrodoriChessSettleInfo irodori_chess_settle_info = 176;
}
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00