mod reordering, deleting, conflict resolution, some other fixes

This commit is contained in:
Adam 2020-12-25 22:50:31 +11:00
parent fbb39a8626
commit 7f1fd95a78
10 changed files with 605 additions and 203 deletions

View file

@ -1,6 +1,7 @@
using Dalamud.Configuration;
using Dalamud.Plugin;
using System;
using System.Collections.Generic;
namespace Penumbra
{
@ -11,7 +12,9 @@ namespace Penumbra
public bool IsEnabled { get; set; } = true;
public string BaseFolder { get; set; } = @"D:/ffxiv/fs_mods/";
public string CurrentCollection { get; set; } = @"D:/ffxiv/fs_mods/";
public List< string > ModCollections { get; set; } = new();
// the below exist just to make saving less cumbersome