0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 08:30:44 -05:00
launcher/project/SPT.Launcher/Views/SettingsView.axaml.cs

22 lines
473 B
C#
Raw Normal View History

2024-05-21 20:15:19 +01:00
using SPT.Launcher.ViewModels;
2023-03-03 19:25:33 +00:00
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using ReactiveUI;
2024-05-21 20:15:19 +01:00
namespace SPT.Launcher.Views
2023-03-03 19:25:33 +00:00
{
public partial class SettingsView : ReactiveUserControl<SettingsViewModel>
{
public SettingsView()
{
InitializeComponent();
}
private void InitializeComponent()
{
this.WhenActivated(disposables => { });
AvaloniaXamlLoader.Load(this);
}
}
}