GC-Proto/proto/InBattleMechanicusCardResultNotify.proto

18 lines
427 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "InBattleMechanicusCardInfo.proto";
2023-02-28 04:12:44 +03:00
// Name: NLPAFOEDIFO
// CmdId: 5342
2023-02-18 04:48:44 +03:00
message InBattleMechanicusCardResultNotify {
2023-02-28 04:12:44 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00