Questionable/Questionable/Configuration.cs

28 lines
857 B
C#
Raw Normal View History

2024-06-08 11:30:26 +02:00
using Dalamud.Configuration;
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
2024-06-08 11:30:26 +02:00
using LLib.ImGui;
namespace Questionable;
internal sealed class Configuration : IPluginConfiguration
{
public int Version { get; set; } = 1;
2024-06-12 18:03:48 +02:00
public GeneralConfiguration General { get; } = new();
public AdvancedConfiguration Advanced { get; } = new();
public WindowConfig DebugWindowConfig { get; } = new();
public WindowConfig ConfigWindowConfig { get; } = new();
internal sealed class GeneralConfiguration
{
public bool AutoAcceptNextQuest { get; set; }
public uint MountId { get; set; } = 71;
public GrandCompany GrandCompany { get; set; } = GrandCompany.None;
2024-06-12 18:03:48 +02:00
}
internal sealed class AdvancedConfiguration
{
2024-06-18 17:51:23 +02:00
public bool DebugOverlay { get; set; }
2024-06-12 18:03:48 +02:00
public bool NeverFly { get; set; }
}
2024-06-08 11:30:26 +02:00
}