mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-30 20:33:43 +01:00
Working on the selector.
This commit is contained in:
parent
8db54ef4f4
commit
069ae772a5
15 changed files with 558 additions and 358 deletions
|
|
@ -7,7 +7,6 @@ using Dalamud.Logging;
|
|||
using Newtonsoft.Json.Linq;
|
||||
using Penumbra.GameData.ByteString;
|
||||
using Penumbra.Meta;
|
||||
using Penumbra.Mods;
|
||||
using Penumbra.Util;
|
||||
|
||||
namespace Penumbra.Mods;
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@ namespace Penumbra.Mods;
|
|||
// Contains the settings for a given mod.
|
||||
public class ModSettings
|
||||
{
|
||||
public static readonly ModSettings Empty = new();
|
||||
|
||||
public bool Enabled { get; set; }
|
||||
public int Priority { get; set; }
|
||||
public Dictionary< string, int > Settings { get; set; } = new();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue