mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
24 lines
676 B
C#
24 lines
676 B
C#
using Artemis.UI.Screens.ProfileEditor.Panels.MenuBar;
|
|
using Artemis.UI.Services.Interfaces;
|
|
using Artemis.UI.Shared;
|
|
|
|
namespace Artemis.UI.Screens.ProfileEditor
|
|
{
|
|
public class ProfileEditorTitleBarViewModel : ViewModelBase
|
|
{
|
|
private readonly IDebugService _debugService;
|
|
|
|
public ProfileEditorTitleBarViewModel(IDebugService debugService, MenuBarViewModel menuBarViewModel)
|
|
{
|
|
MenuBarViewModel = menuBarViewModel;
|
|
_debugService = debugService;
|
|
}
|
|
|
|
public MenuBarViewModel MenuBarViewModel { get; }
|
|
|
|
public void ShowDebugger()
|
|
{
|
|
_debugService.ShowDebugger();
|
|
}
|
|
}
|
|
} |