aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs
blob: 618e20b5c1ef115e52fe9eaea1befccf688379f4 (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; }
    }
}