NpadController.cs 850 B

1234567891011121314151617181920212223242526272829303132333435
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public class NpadController
  4. {
  5. /// <summary>
  6. /// Enables or disables controller support
  7. /// </summary>
  8. public bool Enabled;
  9. /// <summary>
  10. /// Controller Device Index
  11. /// </summary>
  12. public int Index;
  13. /// <summary>
  14. /// Controller Analog Stick Deadzone
  15. /// </summary>
  16. public float Deadzone;
  17. /// <summary>
  18. /// Controller Trigger Threshold
  19. /// </summary>
  20. public float TriggerThreshold;
  21. /// <summary>
  22. /// Left JoyCon Controller Bindings
  23. /// </summary>
  24. public NpadControllerLeft LeftJoycon;
  25. /// <summary>
  26. /// Right JoyCon Controller Bindings
  27. /// </summary>
  28. public NpadControllerRight RightJoycon;
  29. }
  30. }