mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
* Revert "Move CHINESE BOBBYR_ITEMS_BOUGHT_X conditional definition to i18n"
This reverts commit ecdc8916f2.
* actually display the amount purchased correctly at runtime
24 lines
240 B
C++
24 lines
240 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;
|
|
|
|
auto GetLanguagePrefix() -> const STR;
|