mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-01 11:41:08 +00:00
16 lines
528 B
C#
16 lines
528 B
C#
namespace Ryujinx.Common.Configuration.Hid.Keyboard
|
|
{
|
|
public class GenericKeyboardInputConfig<TKey> : GenericInputConfigurationCommon<TKey> where TKey : unmanaged
|
|
{
|
|
/// <summary>
|
|
/// Left JoyCon Controller Stick Bindings
|
|
/// </summary>
|
|
public JoyconConfigKeyboardStick<TKey> LeftJoyconStick { get; set; }
|
|
|
|
/// <summary>
|
|
/// Right JoyCon Controller Stick Bindings
|
|
/// </summary>
|
|
public JoyconConfigKeyboardStick<TKey> RightJoyconStick { get; set; }
|
|
}
|
|
}
|