mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-14 14:14:36 +03:00
24 lines
490 B
Protocol Buffer
24 lines
490 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
import "InBattleMechanicusCardInfo.proto";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message InBattleMechanicusCardResultNotify {
|
||
|
enum EFHHBMNDKBA {
|
||
|
option allow_alias = true;
|
||
|
NONE = 0;
|
||
|
PEPPOHPHJOJ = 5316;
|
||
|
DCDNILFDFLB = 0;
|
||
|
NNBKOLMPOEA = 1;
|
||
|
}
|
||
|
|
||
|
uint32 playIndex = 10;
|
||
|
uint64 waitBeginTimeUs = 4;
|
||
|
repeated InBattleMechanicusCardInfo cardList = 5;
|
||
|
map<uint32, uint32> playerConfirmedCardMap = 12;
|
||
|
uint32 groupId = 15;
|
||
|
uint32 waitSeconds = 9;
|
||
|
}
|