mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 08:10:47 -05:00
22 lines
468 B
C#
22 lines
468 B
C#
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
using PatchClient.ViewModels;
|
|
using ReactiveUI;
|
|
|
|
namespace PatchClient.Views
|
|
{
|
|
public partial class PatcherView : ReactiveUserControl<PatcherViewModel>
|
|
{
|
|
public PatcherView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.WhenActivated(disposables => { });
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|