wabbajack/Wabbajack.Compiler/MO2CompilerSettings.cs

11 lines
303 B
C#
Raw Normal View History

2021-10-23 18:36:35 +00:00
using System;
2021-09-27 12:42:46 +00:00
using Wabbajack.Paths;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Compiler;
public class MO2CompilerSettings : CompilerSettings
2021-09-27 12:42:46 +00:00
{
2021-10-23 18:36:35 +00:00
public string Profile { get; set; } = "";
public RelativePath[] AlwaysEnabled { get; set; } = Array.Empty<RelativePath>();
2021-11-05 22:58:08 +00:00
public string[] OtherProfiles { get; set; }
2021-09-27 12:42:46 +00:00
}