mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
21 lines
No EOL
372 B
C++
21 lines
No EOL
372 B
C++
#ifndef _TRANSLATIONSYSTEM_H
|
|
#define _TRANSLATIONSYSTEM_H
|
|
|
|
|
|
class CustomTranslationSystem {
|
|
private:
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
std::string checkPlayerLocale(Player* player);
|
|
std::string getCompleteTranslationsString(int groupid, int translationid,Player* player);
|
|
std::string getTranslationString(CharacterDatabaseStatements statement, int groupid, int translationid);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif |