2019-12-19 01:14:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using ReactiveUI;
|
2019-11-17 07:59:00 +00:00
|
|
|
|
using Wabbajack.Common;
|
2019-11-21 05:15:47 +00:00
|
|
|
|
using Wabbajack.Lib;
|
2019-11-14 05:28:27 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack
|
|
|
|
|
{
|
|
|
|
|
public interface ISubCompilerVM
|
|
|
|
|
{
|
2019-11-21 05:15:47 +00:00
|
|
|
|
ACompiler ActiveCompilation { get; }
|
2019-11-14 05:28:27 +00:00
|
|
|
|
ModlistSettingsEditorVM ModlistSettings { get; }
|
2019-11-16 23:09:13 +00:00
|
|
|
|
void Unload();
|
2019-12-19 01:14:21 +00:00
|
|
|
|
IObservable<bool> CanCompile { get; }
|
2020-01-18 21:53:10 +00:00
|
|
|
|
Task<bool> Compile();
|
2019-11-14 05:28:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|