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
|
|
|
|
|
{
|
2019-12-11 03:39:09 +00:00
|
|
|
|
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();
|
2019-12-14 22:46:06 +00:00
|
|
|
|
int ConfigVisualVerticalOffset { get; }
|
2019-12-19 01:14:21 +00:00
|
|
|
|
IObservable<bool> CanInstall { get; }
|
2020-01-18 21:57:53 +00:00
|
|
|
|
Task<bool> Install();
|
2019-12-02 05:36:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|