mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
feat: improve arena team UI with names, types, and roster requests
Store team name and type (2v2/3v3/5v5) from SMSG_ARENA_TEAM_QUERY_RESPONSE. Display proper team labels instead of raw IDs. Add Load/Refresh roster buttons and CMSG_ARENA_TEAM_ROSTER request support.
This commit is contained in:
parent
aed8c94544
commit
41e15349c5
3 changed files with 57 additions and 12 deletions
|
|
@ -1431,8 +1431,11 @@ public:
|
|||
uint32_t seasonGames = 0;
|
||||
uint32_t seasonWins = 0;
|
||||
uint32_t rank = 0;
|
||||
std::string teamName;
|
||||
uint32_t teamType = 0; // 2, 3, or 5
|
||||
};
|
||||
const std::vector<ArenaTeamStats>& getArenaTeamStats() const { return arenaTeamStats_; }
|
||||
void requestArenaTeamRoster(uint32_t teamId);
|
||||
|
||||
// ---- Arena Team Roster ----
|
||||
struct ArenaTeamMember {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue