mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
400 B
C#
18 lines
400 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using ReactiveUI;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Lib;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public interface ISubCompilerVM
|
|
{
|
|
ACompiler ActiveCompilation { get; }
|
|
ModlistSettingsEditorVM ModlistSettings { get; }
|
|
void Unload();
|
|
IObservable<bool> CanCompile { get; }
|
|
Task<GetResponse<ModList>> Compile();
|
|
}
|
|
}
|