mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-26 10:29:18 +01:00
refactor: new code style in DalamudStartInfo.cs
This commit is contained in:
parent
b50a977738
commit
afe56e412f
2 changed files with 62 additions and 13 deletions
28
Dalamud/ClientLanguage.cs
Normal file
28
Dalamud/ClientLanguage.cs
Normal 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,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue