wabbajack/Wabbajack/View Models/Installers/ISubInstallerVM.cs

24 lines
578 B
C#
Raw Normal View History

2019-12-02 05:36:47 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ReactiveUI;
using Wabbajack.Common;
using Wabbajack.Lib;
namespace Wabbajack
{
public interface ISubInstallerVM
{
InstallerVM Parent { get; }
2019-12-02 05:36:47 +00:00
AInstaller ActiveInstallation { get; }
void Unload();
2019-12-11 04:59:15 +00:00
bool SupportsAfterInstallNavigation { get; }
void AfterInstallNavigation();
int ConfigVisualVerticalOffset { get; }
2019-12-19 01:14:21 +00:00
IObservable<bool> CanInstall { get; }
Task<bool> Install();
2019-12-02 05:36:47 +00:00
}
}