mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-27 09:02:54 +00:00
16 lines
483 B
C#
16 lines
483 B
C#
namespace Ryujinx.Common.Configuration.Hid
|
|
{
|
|
public class GenericInputConfigurationCommon<TButton> : InputConfig where TButton : unmanaged
|
|
{
|
|
/// <summary>
|
|
/// Left JoyCon Controller Bindings
|
|
/// </summary>
|
|
public LeftJoyconCommonConfig<TButton> LeftJoycon { get; set; }
|
|
|
|
/// <summary>
|
|
/// Right JoyCon Controller Bindings
|
|
/// </summary>
|
|
public RightJoyconCommonConfig<TButton> RightJoycon { get; set; }
|
|
}
|
|
}
|