mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:28:33 +00:00
21 lines
516 B
C#
21 lines
516 B
C#
|
namespace Ryujinx.UI.Input
|
||
|
{
|
||
|
public class NpadKeyboard
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Left JoyCon Keyboard Bindings
|
||
|
/// </summary>
|
||
|
public Configuration.Hid.NpadKeyboardLeft LeftJoycon;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Right JoyCon Keyboard Bindings
|
||
|
/// </summary>
|
||
|
public Configuration.Hid.NpadKeyboardRight RightJoycon;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Hotkey Keyboard Bindings
|
||
|
/// </summary>
|
||
|
public Configuration.Hid.KeyboardHotkeys Hotkeys;
|
||
|
}
|
||
|
}
|