mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-11 19:07:42 +02:00

Enable this settings screen via a boolean in Config.json First one is the xb2 menu softlock fix
17 lines
384 B
C#
17 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();
|
|
}
|
|
}
|
|
}
|