whoa/src/glue/CRealmList.hpp
2023-02-15 00:24:22 -06:00

29 lines
601 B
C++

#ifndef GLUE_C_REALM_LIST_HPP
#define GLUE_C_REALM_LIST_HPP
#include <cstdint>
#include <storm/Array.hpp>
class Cfg_CategoriesRec;
struct RealmCategory {
Cfg_CategoriesRec* m_category;
TSGrowableArray<uint32_t> m_realms;
uint32_t uint14;
};
class CRealmList {
public:
// Static variables
static float s_avgLoad;
static TSFixedArray<RealmCategory*> s_categories;
static int32_t s_preferredCategory;
static int32_t s_selectedCategory;
// Static functions
static void Initialize();
static void UpdateList();
};
#endif