mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 05:31:07 +03:00
17 lines
299 B
C++
17 lines
299 B
C++
#ifndef UI_GAME_C_G_PARTY_INFO_HPP
|
|
#define UI_GAME_C_G_PARTY_INFO_HPP
|
|
|
|
#include "util/GUID.hpp"
|
|
|
|
class CGPartyInfo {
|
|
public:
|
|
// Public static functions
|
|
static uint32_t NumMembers();
|
|
|
|
private:
|
|
// Private static variables
|
|
static WOWGUID m_members[];
|
|
};
|
|
|
|
#endif
|