mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-09-13 21:45:11 +00:00
Enable this settings screen via a boolean in Config.json First one is the xb2 menu softlock fix
18 lines
384 B
C#
18 lines
384 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Ryujinx.Ava.UI.ViewModels;
|
|
using Ryujinx.UI.Common.Configuration;
|
|
|
|
namespace Ryujinx.Ava.UI.Views.Settings
|
|
{
|
|
public partial class SettingsHacksView : UserControl
|
|
{
|
|
public SettingsViewModel ViewModel;
|
|
|
|
public SettingsHacksView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|