feat(db): load realm categories db

This commit is contained in:
fallenoak 2023-02-14 22:33:39 -06:00 committed by GitHub
parent c00028c214
commit 8745a5102d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 72 additions and 0 deletions

View file

@ -2,9 +2,11 @@
#define DB_DB_HPP
#include "db/rec/AchievementRec.hpp"
#include "db/rec/Cfg_CategoriesRec.hpp"
#include "db/WowClientDB.hpp"
extern WowClientDB<AchievementRec> g_achievementDB;
extern WowClientDB<Cfg_CategoriesRec> g_cfg_CategoriesDB;
void ClientDBInitialize();