namespace Ryujinx.Common.Configuration.Hid
{
public class KeyboardConfig : InputConfig
{
///
/// Left JoyCon Keyboard Bindings
///
public NpadKeyboardLeft LeftJoycon { get; set; }
///
/// Right JoyCon Keyboard Bindings
///
public NpadKeyboardRight RightJoycon { get; set; }
///
/// Hotkey Keyboard Bindings
///
public KeyboardHotkeys Hotkeys { get; set; }
}
}