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