mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-13 07:57:43 +02:00
15 lines
483 B
C#
15 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; }
|
|
}
|
|
}
|