mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 01:58:32 +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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|