mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 01:30:47 -05:00
23 lines
480 B
C#
23 lines
480 B
C#
using Avalonia;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
using PatchClient.ViewModels;
|
|
using ReactiveUI;
|
|
|
|
namespace PatchClient.Views
|
|
{
|
|
public partial class MainWindow : ReactiveWindow<MainWindowViewModel>
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.WhenActivated(disposables => { });
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|