Setup the CollectionsManager and introduced first version of character based collection loading and automatic redrawing of characters.

This commit is contained in:
Ottermandias 2021-06-26 15:23:11 +02:00
parent b0d14751cd
commit 3c9c892a83
15 changed files with 704 additions and 299 deletions

View file

@ -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 )