mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
2e9f222648
To save settings when swapping off a compiler VM
19 lines
397 B
C#
19 lines
397 B
C#
using ReactiveUI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public interface ISubCompilerVM
|
|
{
|
|
IReactiveCommand BeginCommand { get; }
|
|
bool Compiling { get; }
|
|
ModlistSettingsEditorVM ModlistSettings { get; }
|
|
void Unload();
|
|
}
|
|
}
|