mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
17 lines
356 B
C#
17 lines
356 B
C#
using Artemis.UI.Shared;
|
|
using Avalonia;
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
namespace Artemis.UI.Screens.ProfileEditor.ProfileTree.Dialogs;
|
|
|
|
public partial class LayerHintsDialogView : ReactiveAppWindow<LayerHintsDialogViewModel>
|
|
{
|
|
public LayerHintsDialogView()
|
|
{
|
|
InitializeComponent();
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
|
|
} |