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