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