mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
23 lines
452 B
C#
23 lines
452 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 enum ClientLanguage
|
|
{
|
|
Japanese,
|
|
English,
|
|
German,
|
|
French
|
|
}
|
|
}
|