GC-Proto/proto/DungeonCandidateTeamInfoNotify.proto

18 lines
468 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 "DungeonCandidateTeamAvatar.proto";
2023-04-11 06:14:48 +03:00
import "DungeonCandidateTeamPlayerState.proto";
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
// CmdId: 995
// Name: DFHKBHEIOBF
2023-02-18 04:48:44 +03:00
message DungeonCandidateTeamInfoNotify {
2023-04-11 06:14:48 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00