mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 07:50:49 -05:00
23 lines
401 B
C#
23 lines
401 B
C#
|
using Avalonia;
|
||
|
using Avalonia.Controls;
|
||
|
using Avalonia.Markup.Xaml;
|
||
|
|
||
|
namespace PatchClient.Views
|
||
|
{
|
||
|
public partial class MainWindow : Window
|
||
|
{
|
||
|
public MainWindow()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
#if DEBUG
|
||
|
this.AttachDevTools();
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
private void InitializeComponent()
|
||
|
{
|
||
|
AvaloniaXamlLoader.Load(this);
|
||
|
}
|
||
|
}
|
||
|
}
|