0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-12 22:50:46 -05:00
installer/SPTInstaller/Views/InstallView.axaml.cs

12 lines
234 B
C#
Raw Normal View History

2023-05-11 23:11:39 -04:00
using Avalonia.ReactiveUI;
using SPTInstaller.ViewModels;
namespace SPTInstaller.Views;
public partial class InstallView : ReactiveUserControl<InstallViewModel>
2023-05-11 23:11:39 -04:00
{
public InstallView()
2023-05-11 23:11:39 -04:00
{
InitializeComponent();
2023-05-11 23:11:39 -04:00
}
}