0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 09:30:48 -05:00

22 lines
599 B
C#
Raw Normal View History

using PatchGenerator.Models;
using ReactiveUI;
2021-12-22 23:15:14 -05:00
namespace PatchGenerator.ViewModels
{
public class OptionsViewModel : ViewModelBase
{
public PatchGenInfo GenerationInfo { get; set; } = new PatchGenInfo();
public OptionsViewModel(IScreen Host) : base(Host)
{
GenerationInfo.SourceFolderPath = "Drop SOURCE folder here";
GenerationInfo.TargetFolderPath = "Drop TARGET folder here";
}
public void GeneratePatches()
{
NavigateTo(new PatchGenerationViewModel(HostScreen, GenerationInfo));
}
2021-12-22 23:15:14 -05:00
}
}