aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs
blob: c70594df47ce583a10fdbbd47ef2dfdf728765f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; }
    }
}