68a6960617
* Separate hotkey settings from emulated input settings * Remember gui column sort * nit * fix schema * nit * Remove unused SaveDataPath to speed up game list loading * Reset the vertical scrollbar to the top when titles finish loading
18 lines
No EOL
471 B
C#
18 lines
No EOL
471 B
C#
namespace Ryujinx.Common.Configuration.Hid
|
|
{
|
|
public class KeyboardConfig : InputConfig
|
|
{
|
|
// DO NOT MODIFY
|
|
public const uint AllKeyboardsIndex = 0;
|
|
|
|
/// <summary>
|
|
/// Left JoyCon Keyboard Bindings
|
|
/// </summary>
|
|
public NpadKeyboardLeft LeftJoycon { get; set; }
|
|
|
|
/// <summary>
|
|
/// Right JoyCon Keyboard Bindings
|
|
/// </summary>
|
|
public NpadKeyboardRight RightJoycon { get; set; }
|
|
}
|
|
} |