mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 13:55:36 +08:00
c7ab182e97
* new cht lang file * readme cht * fix * readme fix
22 lines
318 B
C
22 lines
318 B
C
#pragma warning(push)
|
|
#pragma warning(disable: 4005)
|
|
|
|
#define English 0
|
|
#define Chinese 1
|
|
#define Russian 2
|
|
#define TradChinese 3
|
|
|
|
#include"en.h"
|
|
|
|
#if (LANGUAGE == Chinese)
|
|
#include"zh.h"
|
|
#endif
|
|
#if (LANGUAGE == Russian)
|
|
#include"ru.h"
|
|
#endif
|
|
#if (LANGUAGE == TradChinese)
|
|
#include"cht.h"
|
|
#endif
|
|
|
|
|
|
#pragma warning(pop) |