2019-12-21 20:52:31 +01:00
|
|
|
namespace Ryujinx.UI.Input
|
|
|
|
{
|
|
|
|
public class NpadKeyboard
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Left JoyCon Keyboard Bindings
|
|
|
|
/// </summary>
|
2020-04-30 14:07:41 +02:00
|
|
|
public Configuration.Hid.NpadKeyboardLeft LeftJoycon { get; set; }
|
2019-12-21 20:52:31 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Right JoyCon Keyboard Bindings
|
|
|
|
/// </summary>
|
2020-04-30 14:07:41 +02:00
|
|
|
public Configuration.Hid.NpadKeyboardRight RightJoycon { get; set; }
|
2019-12-21 20:52:31 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Hotkey Keyboard Bindings
|
|
|
|
/// </summary>
|
2020-04-30 14:07:41 +02:00
|
|
|
public Configuration.Hid.KeyboardHotkeys Hotkeys { get; set; }
|
2019-12-21 20:52:31 +01:00
|
|
|
}
|
|
|
|
}
|