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

27 lines
717 B
C#
Raw Normal View History

2021-12-26 21:56:44 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ReactiveUI;
using Wabbajack.Common;
2021-12-28 00:24:53 +00:00
using Wabbajack.Installer;
2021-12-26 21:56:44 +00:00
using Wabbajack.Lib;
using Wabbajack.Lib.Interventions;
2021-12-26 21:56:44 +00:00
namespace Wabbajack
{
public interface ISubInstallerVM
{
InstallerVM Parent { get; }
2021-12-28 00:24:53 +00:00
IInstaller ActiveInstallation { get; }
2021-12-26 21:56:44 +00:00
void Unload();
bool SupportsAfterInstallNavigation { get; }
void AfterInstallNavigation();
int ConfigVisualVerticalOffset { get; }
ErrorResponse CanInstall { get; }
Task<bool> Install();
IUserIntervention InterventionConverter(IUserIntervention intervention);
}
}