mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-12 21:38:38 +00:00
17 lines
358 B
C#
17 lines
358 B
C#
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.Debugger.Settings;
|
|
|
|
public partial class DebugSettingsView : ReactiveUserControl<DebugSettingsViewModel>
|
|
{
|
|
public DebugSettingsView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
} |