mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
22 lines
473 B
C#
22 lines
473 B
C#
using Aki.Launcher.ViewModels;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
using ReactiveUI;
|
|
|
|
namespace Aki.Launcher.Views
|
|
{
|
|
public partial class SettingsView : ReactiveUserControl<SettingsViewModel>
|
|
{
|
|
public SettingsView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.WhenActivated(disposables => { });
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|