mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:10:44 -05:00
20 lines
434 B
C#
20 lines
434 B
C#
using SPT.Launcher.ViewModels.Dialogs;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace SPT.Launcher.Views.Dialogs
|
|
{
|
|
public partial class WarningDialogView : ReactiveUserControl<WarningDialogViewModel>
|
|
{
|
|
public WarningDialogView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|