mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 06:10:47 -05:00
26 lines
538 B
C#
26 lines
538 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();
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.WhenActivated(disposables => { });
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|