0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 09:52:45 -05:00
patcher/Patcher/PatchClient/Views/PatcherView.axaml.cs

22 lines
468 B
C#
Raw Normal View History

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);
}
}
}