mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
21 lines
424 B
C#
21 lines
424 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
namespace DHT.Desktop.Main {
|
|
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
|
public sealed class AboutWindow : Window {
|
|
public AboutWindow() {
|
|
InitializeComponent();
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
|
|
private void InitializeComponent() {
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|