namespace Ryujinx.Common.Configuration.Hid
{
public class NpadController
{
///
/// Enables or disables controller support
///
public bool Enabled { get; set; }
///
/// Controller Device Index
///
public int Index { get; set; }
///
/// Controller Analog Stick Deadzone
///
public float Deadzone { get; set; }
///
/// Controller Trigger Threshold
///
public float TriggerThreshold { get; set; }
///
/// Left JoyCon Controller Bindings
///
public NpadControllerLeft LeftJoycon { get; set; }
///
/// Right JoyCon Controller Bindings
///
public NpadControllerRight RightJoycon { get; set; }
}
}