mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 13:55:36 +08:00
18 lines
243 B
C
18 lines
243 B
C
#pragma warning(push)
|
|
#pragma warning(disable: 4005)
|
|
|
|
#define English 0
|
|
#define Chinese 1
|
|
#define Russian 2
|
|
|
|
#include"en.h"
|
|
|
|
#if (LANGUAGE == Chinese)
|
|
#include"zh.h"
|
|
#endif
|
|
#if (LANGUAGE == Russian)
|
|
#include"ru.h"
|
|
#endif
|
|
|
|
|
|
#pragma warning(pop) |