2024-02-10 12:43:51 +08:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable: 4005)
|
2024-02-07 20:59:24 +08:00
|
|
|
|
2024-02-10 12:43:51 +08:00
|
|
|
#define English 0
|
|
|
|
#define Chinese 1
|
2024-06-22 23:00:29 +08:00
|
|
|
#define Russian 2
|
2024-07-30 15:32:14 +08:00
|
|
|
#define TradChinese 3
|
2024-02-10 12:43:51 +08:00
|
|
|
|
|
|
|
#include"en.h"
|
|
|
|
|
|
|
|
#if (LANGUAGE == Chinese)
|
|
|
|
#include"zh.h"
|
|
|
|
#endif
|
2024-06-22 23:00:29 +08:00
|
|
|
#if (LANGUAGE == Russian)
|
|
|
|
#include"ru.h"
|
|
|
|
#endif
|
2024-07-30 15:32:14 +08:00
|
|
|
#if (LANGUAGE == TradChinese)
|
|
|
|
#include"cht.h"
|
|
|
|
#endif
|
2024-02-10 12:43:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
#pragma warning(pop)
|