mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +01:00
54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using System;
|
|
#pragma warning disable SA1401 // Fields should be private
|
|
|
|
namespace Dalamud
|
|
{
|
|
/// <summary>
|
|
/// Class containing information needed to initialize Dalamud.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class DalamudStartInfo
|
|
{
|
|
/// <summary>
|
|
/// The working directory of the XIVLauncher installations.
|
|
/// </summary>
|
|
public string WorkingDirectory;
|
|
|
|
/// <summary>
|
|
/// The path to the configuration file.
|
|
/// </summary>
|
|
public string ConfigurationPath;
|
|
|
|
/// <summary>
|
|
/// The path to the directory for installed plugins.
|
|
/// </summary>
|
|
public string PluginDirectory;
|
|
|
|
/// <summary>
|
|
/// The path to the directory for developer plugins.
|
|
/// </summary>
|
|
public string DefaultPluginDirectory;
|
|
|
|
/// <summary>
|
|
/// The path to core Dalamud assets.
|
|
/// </summary>
|
|
public string AssetDirectory;
|
|
|
|
/// <summary>
|
|
/// The language of the game client.
|
|
/// </summary>
|
|
public ClientLanguage Language;
|
|
|
|
/// <summary>
|
|
/// The current game version code.
|
|
/// </summary>
|
|
public string GameVersion;
|
|
|
|
/// <summary>
|
|
/// Whether or not market board information should be uploaded by default.
|
|
/// </summary>
|
|
public bool OptOutMbCollection;
|
|
}
|
|
}
|
|
|
|
#pragma warning restore SA1401 // Fields should be private
|