mirror of
https://github.com/sp-tarkov/installer.git
synced 2025-02-13 03:30:45 -05:00
14 lines
271 B
C#
14 lines
271 B
C#
|
using Avalonia.ReactiveUI;
|
||
|
using SPTInstaller.ViewModels;
|
||
|
|
||
|
namespace SPTInstaller.Views
|
||
|
{
|
||
|
public partial class PreChecksView : ReactiveUserControl<PreChecksViewModel>
|
||
|
{
|
||
|
public PreChecksView()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
}
|
||
|
}
|