Files
Leviathan/Client/Game/game/DB/SBanWordDB.h
T
2026-06-01 12:46:52 +02:00

22 lines
326 B
C++

#pragma once
//#include <string>
//#include <vector>
#include <toolkit/khash.h>
class SBanWordDB
{
protected:
std::vector< struct BanWordBase* > m_vBanWord;
protected:
void Init();
void Destroy();
void Load();
public:
SBanWordDB();
~SBanWordDB();
static SBanWordDB* m_pThis;
};
SBanWordDB & GetBanWordDB();