23 lines
390 B
23 lines
390 B
4 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace ReZero.SuperAPI
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Represents the language options.
|
||
|
/// </summary>
|
||
|
public enum Language
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Chinese language.
|
||
|
/// </summary>
|
||
|
CN,
|
||
|
|
||
|
/// <summary>
|
||
|
/// English language.
|
||
|
/// </summary>
|
||
|
EN
|
||
|
}
|
||
|
}
|