mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
12 lines
193 B
C++
12 lines
193 B
C++
|
|
#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
|