2020-05-02 22:00:53 -04:00
|
|
|
namespace Ryujinx.Common.Configuration.Hid
|
|
|
|
{
|
|
|
|
public class KeyboardConfig : InputConfig
|
|
|
|
{
|
2020-05-03 09:00:29 -04:00
|
|
|
// DO NOT MODIFY
|
|
|
|
public const uint AllKeyboardsIndex = 0;
|
|
|
|
|
2020-05-02 22:00:53 -04:00
|
|
|
/// <summary>
|
|
|
|
/// Left JoyCon Keyboard Bindings
|
|
|
|
/// </summary>
|
|
|
|
public NpadKeyboardLeft LeftJoycon { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Right JoyCon Keyboard Bindings
|
|
|
|
/// </summary>
|
|
|
|
public NpadKeyboardRight RightJoycon { get; set; }
|
|
|
|
}
|
|
|
|
}
|