mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
29 lines
592 B
C#
29 lines
592 B
C#
namespace Dalamud;
|
|
|
|
// TODO(v10): Delete this, and use Dalamud.Common.ClientLanguage instead for everything.
|
|
|
|
/// <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,
|
|
}
|