538fba826b
* Improvements to input and input configuration in the GUI * Requested changes * nits * more nits
20 lines
No EOL
532 B
C#
20 lines
No EOL
532 B
C#
namespace Ryujinx.Common.Configuration.Hid
|
|
{
|
|
public class KeyboardConfig : InputConfig
|
|
{
|
|
/// <summary>
|
|
/// Left JoyCon Keyboard Bindings
|
|
/// </summary>
|
|
public NpadKeyboardLeft LeftJoycon { get; set; }
|
|
|
|
/// <summary>
|
|
/// Right JoyCon Keyboard Bindings
|
|
/// </summary>
|
|
public NpadKeyboardRight RightJoycon { get; set; }
|
|
|
|
/// <summary>
|
|
/// Hotkey Keyboard Bindings
|
|
/// </summary>
|
|
public KeyboardHotkeys Hotkeys { get; set; }
|
|
}
|
|
} |