mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
25 lines
488 B
C#
25 lines
488 B
C#
using System;
|
|
using Dalamud.DiscordBot;
|
|
|
|
namespace Dalamud {
|
|
[Serializable]
|
|
public sealed class DalamudStartInfo
|
|
{
|
|
public string WorkingDirectory;
|
|
public string ConfigurationPath;
|
|
|
|
public string PluginDirectory;
|
|
public string DefaultPluginDirectory;
|
|
public ClientLanguage Language;
|
|
|
|
public string GameVersion;
|
|
}
|
|
|
|
public enum ClientLanguage
|
|
{
|
|
Japanese,
|
|
English,
|
|
German,
|
|
French
|
|
}
|
|
}
|