wabbajack/Wabbajack.Compiler/MO2CompilerSettings.cs
Timothy Baldridge 3d61847b0b WIP bugfixes
2021-10-23 12:36:35 -06:00

10 lines
255 B
C#

using System;
using Wabbajack.Paths;
namespace Wabbajack.Compiler;
public class MO2CompilerSettings : CompilerSettings
{
public string Profile { get; set; } = "";
public RelativePath[] AlwaysEnabled { get; set; } = Array.Empty<RelativePath>();
}