mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 05:04:15 +01:00
Setup the CollectionsManager and introduced first version of character based collection loading and automatic redrawing of characters.
This commit is contained in:
parent
b0d14751cd
commit
3c9c892a83
15 changed files with 704 additions and 299 deletions
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Dalamud.Configuration;
|
||||
using Dalamud.Plugin;
|
||||
using Penumbra.Util;
|
||||
|
|
@ -24,7 +25,8 @@ namespace Penumbra
|
|||
public string ModDirectory { get; set; } = @"D:/ffxiv/fs_mods/";
|
||||
|
||||
public string CurrentCollection { get; set; } = "Default";
|
||||
|
||||
public string ForcedCollection { get; set; } = "";
|
||||
public Dictionary< string, string > CharacterCollections { get; set; } = new();
|
||||
public bool InvertModListOrder { internal get; set; }
|
||||
|
||||
public static Configuration Load( DalamudPluginInterface pi )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue