mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
28 lines
592 B
C#
28 lines
592 B
C#
namespace Dalamud
|
|
{
|
|
/// <summary>
|
|
/// Enum describing the language the game loads in.
|
|
/// </summary>
|
|
public enum ClientLanguage
|
|
{
|
|
/// <summary>
|
|
/// Indicating a Japanese game client.
|
|
/// </summary>
|
|
Japanese,
|
|
|
|
/// <summary>
|
|
/// Indicating an English game client.
|
|
/// </summary>
|
|
English,
|
|
|
|
/// <summary>
|
|
/// Indicating a German game client.
|
|
/// </summary>
|
|
German,
|
|
|
|
/// <summary>
|
|
/// Indicating a French game client.
|
|
/// </summary>
|
|
French,
|
|
}
|
|
}
|