wabbajack/Wabbajack/View Models/Compilers/ISubCompilerVM.cs

19 lines
397 B
C#
Raw Normal View History

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();
}
}