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