using Ryujinx.Common.Configuration.Hid.Controller.Motion;
namespace Ryujinx.Common.Configuration.Hid.Controller
{
public class GenericControllerInputConfig<Button, Stick> : GenericInputConfigurationCommon<Button> where Button : unmanaged where Stick : unmanaged
/// <summary>
/// Left JoyCon Controller Stick Bindings
/// </summary>
public JoyconConfigControllerStick<Button, Stick> LeftJoyconStick { get; set; }
/// Right JoyCon Controller Stick Bindings
public JoyconConfigControllerStick<Button, Stick> RightJoyconStick { get; set; }
/// Controller Left Analog Stick Deadzone
public float DeadzoneLeft { get; set; }
/// Controller Right Analog Stick Deadzone
public float DeadzoneRight { get; set; }
/// Controller Trigger Threshold
public float TriggerThreshold { get; set; }
/// Controller Motion Settings
public MotionConfigController Motion { get; set; }
/// Controller Rumble Settings
public RumbleConfigController Rumble { get; set; }
}