mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
18 lines
468 B
Protocol Buffer
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;
|
|
}
|
|
|