wabbajack/Wabbajack.Lib/NativeCompilerSettings.cs
2020-10-18 13:03:50 -06:00

15 lines
310 B
C#

using Wabbajack.Common;
namespace Wabbajack.Lib
{
public class NativeCompilerSettings : CompilerSettings
{
public Game CompilingGame { get; set; }
public string ModListName { get; set; } = "untitled";
public string[][] CompilationSteps = new string[0][];
}
}