mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-08 18:16:08 +03:00
18 lines
427 B
Protocol Buffer
18 lines
427 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "InBattleMechanicusCardInfo.proto";
|
|
|
|
// CmdId: 5365
|
|
// Name: FBEOAMCGJKF
|
|
message InBattleMechanicusCardResultNotify {
|
|
uint32 group_id = 7;
|
|
uint32 wait_seconds = 15;
|
|
map<uint32, uint32> player_confirmed_card_map = 2;
|
|
uint64 wait_begin_time_us = 5;
|
|
uint32 play_index = 4;
|
|
repeated InBattleMechanicusCardInfo card_list = 6;
|
|
}
|
|
|