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

18 lines
400 B
C#
Raw Normal View History

2019-12-19 01:14:21 +00:00
using System;
using System.Threading.Tasks;
using ReactiveUI;
using Wabbajack.Common;
2019-11-21 05:15:47 +00:00
using Wabbajack.Lib;
namespace Wabbajack
{
public interface ISubCompilerVM
{
2019-11-21 05:15:47 +00:00
ACompiler ActiveCompilation { get; }
ModlistSettingsEditorVM ModlistSettings { get; }
void Unload();
2019-12-19 01:14:21 +00:00
IObservable<bool> CanCompile { get; }
Task<GetResponse<ModList>> Compile();
}
}