mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
362 B
C#
17 lines
362 B
C#
using ReactiveUI;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Lib;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public interface ISubCompilerVM
|
|
{
|
|
IReactiveCommand BeginCommand { get; }
|
|
ACompiler ActiveCompilation { get; }
|
|
|
|
ModlistSettingsEditorVM ModlistSettings { get; }
|
|
StatusUpdateTracker StatusTracker { get;}
|
|
void Unload();
|
|
}
|
|
}
|