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