2019-11-14 05:28:27 +00:00
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
IReactiveCommand BeginCommand { get; }
|
2019-11-21 05:15:47 +00:00
|
|
|
|
ACompiler ActiveCompilation { get; }
|
2019-11-18 00:17:06 +00:00
|
|
|
|
|
2019-11-14 05:28:27 +00:00
|
|
|
|
ModlistSettingsEditorVM ModlistSettings { get; }
|
2019-11-17 07:59:00 +00:00
|
|
|
|
StatusUpdateTracker StatusTracker { get;}
|
2019-11-16 23:09:13 +00:00
|
|
|
|
void Unload();
|
2019-11-14 05:28:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|