mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 13:41:06 +03:00
16 lines
269 B
C++
16 lines
269 B
C++
#include "ui/game/CGPartyInfo.hpp"
|
|
|
|
WOWGUID CGPartyInfo::m_members[4];
|
|
|
|
uint32_t CGPartyInfo::NumMembers() {
|
|
uint32_t count = 0;
|
|
|
|
for (auto& member : CGPartyInfo::m_members) {
|
|
if (member != 0) {
|
|
count++;
|
|
}
|
|
}
|
|
|
|
return count;
|
|
}
|