mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-08-18 14:52:00 +00:00
17 lines
324 B
C#
17 lines
324 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Ryujinx.Ava.UI.Views.Settings
|
|
{
|
|
public partial class SettingsInputView : UserControl
|
|
{
|
|
public SettingsInputView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
ControllerSettings.Dispose();
|
|
}
|
|
}
|
|
} |