GC-Proto/proto/DungeonCandidateTeamInfoNotify.proto
2023-04-11 11:14:48 +08:00

18 lines
468 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "DungeonCandidateTeamAvatar.proto";
import "DungeonCandidateTeamPlayerState.proto";
// CmdId: 995
// Name: DFHKBHEIOBF
message DungeonCandidateTeamInfoNotify {
repeated DungeonCandidateTeamAvatar avatar_list = 5;
map<uint32, DungeonCandidateTeamPlayerState> player_state_map = 8;
uint32 match_type = 7;
repeated uint32 ready_player_uid = 2;
uint32 dungeon_id = 10;
}