feat(db): load achievement db

This commit is contained in:
fallenoak 2023-02-13 23:21:25 -06:00 committed by GitHub
parent 1575f6d83c
commit c00028c214
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 384 additions and 1 deletions

11
src/db/Db.hpp Normal file
View file

@ -0,0 +1,11 @@
#ifndef DB_DB_HPP
#define DB_DB_HPP
#include "db/rec/AchievementRec.hpp"
#include "db/WowClientDB.hpp"
extern WowClientDB<AchievementRec> g_achievementDB;
void ClientDBInitialize();
#endif