mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-03-26 07:34:45 +01:00
17 lines
325 B
C#
17 lines
325 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Ryujinx.Ava.UI.Views.Settings
|
|
{
|
|
public partial class SettingsInputView : UserControl
|
|
{
|
|
public SettingsInputView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
ControllerSettings.Dispose();
|
|
}
|
|
}
|
|
}
|