mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +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";
|
|
|
|
// Name: NLPAFOEDIFO
|
|
// CmdId: 5342
|
|
message InBattleMechanicusCardResultNotify {
|
|
map<uint32, uint32> player_confirmed_card_map = 8;
|
|
uint32 play_index = 2;
|
|
uint32 group_id = 6;
|
|
uint32 wait_seconds = 15;
|
|
repeated InBattleMechanicusCardInfo card_list = 9;
|
|
uint64 wait_begin_time_us = 7;
|
|
}
|
|
|