mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
26 lines
281 B
C++
26 lines
281 B
C++
#pragma once
|
|
|
|
#include <Types.h>
|
|
|
|
namespace i18n {
|
|
enum class Lang
|
|
{
|
|
en,
|
|
de,
|
|
ru,
|
|
nl,
|
|
pl,
|
|
fr,
|
|
it,
|
|
zh
|
|
};
|
|
}
|
|
|
|
extern const i18n::Lang g_lang;
|
|
|
|
extern const int MAX_MESSAGES_ON_MAP_BOTTOM;
|
|
|
|
extern const int BOBBYR_ITEMS_BOUGHT_X;
|
|
|
|
auto GetLanguagePrefix() -> const STR;
|