wabbajack/Wabbajack.App.Wpf/View Models/Compilers/ISubCompilerVM.cs

17 lines
385 B
C#
Raw Normal View History

2021-12-26 21:56:44 +00:00
using System;
using System.Threading.Tasks;
2021-12-28 00:24:53 +00:00
using Wabbajack.Compiler;
using Wabbajack.DTOs;
2021-12-26 21:56:44 +00:00
namespace Wabbajack
{
public interface ISubCompilerVM
{
ACompiler ActiveCompilation { get; }
ModlistSettingsEditorVM ModlistSettings { get; }
void Unload();
IObservable<bool> CanCompile { get; }
Task<GetResponse<ModList>> Compile();
}
}