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