aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs
blob: 3d43817e19dabc4cf4c04b82953581595d608648 (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<Button> : InputConfig where Button : unmanaged
    {
        /// <summary>
        /// Left JoyCon Controller Bindings
        /// </summary>
        public LeftJoyconCommonConfig<Button> LeftJoycon { get; set; }

        /// <summary>
        /// Right JoyCon Controller Bindings
        /// </summary>
        public RightJoyconCommonConfig<Button> RightJoycon { get; set; }
    }
}