refactor: new code style in DalamudStartInfo.cs

This commit is contained in:
goat 2021-03-31 15:49:15 +02:00
parent b50a977738
commit afe56e412f
2 changed files with 62 additions and 13 deletions

28
Dalamud/ClientLanguage.cs Normal file
View file

@ -0,0 +1,28 @@
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,
}
}