mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
Profiles (#1178)
This commit is contained in:
parent
50458444e7
commit
642e8bf6d3
18 changed files with 1492 additions and 74 deletions
|
|
@ -6,6 +6,7 @@ using System.Linq;
|
|||
|
||||
using Dalamud.Game.Text;
|
||||
using Dalamud.Interface.Style;
|
||||
using Dalamud.Plugin.Internal.Profiles;
|
||||
using Dalamud.Utility;
|
||||
using Newtonsoft.Json;
|
||||
using Serilog;
|
||||
|
|
@ -266,6 +267,21 @@ internal sealed class DalamudConfiguration : IServiceType
|
|||
/// </summary>
|
||||
public string ChosenStyle { get; set; } = "Dalamud Standard";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a list of saved plugin profiles.
|
||||
/// </summary>
|
||||
public List<ProfileModel>? SavedProfiles { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the default plugin profile.
|
||||
/// </summary>
|
||||
public ProfileModel? DefaultProfile { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether or not profiles are enabled.
|
||||
/// </summary>
|
||||
public bool ProfilesEnabled { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether or not Dalamud RMT filtering should be disabled.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue