mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 05:50:47 -05:00
22 lines
599 B
C#
22 lines
599 B
C#
using PatchGenerator.Models;
|
|
using ReactiveUI;
|
|
|
|
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));
|
|
}
|
|
}
|
|
}
|