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

22 lines
473 B
C#

using SPT.Launcher.ViewModels;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using ReactiveUI;
namespace SPT.Launcher.Views
{
public partial class SettingsView : ReactiveUserControl<SettingsViewModel>
{
public SettingsView()
{
InitializeComponent();
}
private void InitializeComponent()
{
this.WhenActivated(disposables => { });
AvaloniaXamlLoader.Load(this);
}
}
}