mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
using Microsoft.WindowsAPICodePack.Dialogs;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using System;
|
|
using System.Reactive.Disposables;
|
|
using System.Reactive.Linq;
|
|
using System.Threading.Tasks;
|
|
using DynamicData;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Compiler;
|
|
using Wabbajack.DTOs;
|
|
using Wabbajack.DTOs.GitHub;
|
|
using Wabbajack;
|
|
using Wabbajack.Extensions;
|
|
using Wabbajack.Paths.IO;
|
|
using Consts = Wabbajack.Consts;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class MO2CompilerVM : ViewModel
|
|
{
|
|
public CompilerVM Parent { get; }
|
|
|
|
public FilePickerVM DownloadLocation { get; }
|
|
|
|
public FilePickerVM ModListLocation { get; }
|
|
|
|
[Reactive]
|
|
public ACompiler ActiveCompilation { get; private set; }
|
|
|
|
[Reactive]
|
|
public object StatusTracker { get; private set; }
|
|
|
|
public void Unload()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IObservable<bool> CanCompile { get; }
|
|
public Task<GetResponse<ModList>> Compile()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public MO2CompilerVM(CompilerVM parent)
|
|
{
|
|
}
|
|
}
|
|
}
|