26 lines
427 B
C#
26 lines
427 B
C#
namespace AlicizaX
|
|
{
|
|
/// <summary>
|
|
/// 本地化语言。
|
|
/// </summary>
|
|
public enum Language : byte
|
|
{
|
|
Unspecified,
|
|
|
|
/// <summary>
|
|
/// 简体中文。
|
|
/// </summary>
|
|
ChineseSimplified,
|
|
|
|
/// <summary>
|
|
/// 英语。
|
|
/// </summary>
|
|
English,
|
|
|
|
/// <summary>
|
|
/// 日语。
|
|
/// </summary>
|
|
Japanese,
|
|
}
|
|
}
|