InputConfig.cs 489 B

1234567891011121314151617181920
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public class InputConfig
  4. {
  5. /// <summary>
  6. /// Controller Device Index
  7. /// </summary>
  8. public int Index { get; set; }
  9. /// <summary>
  10. /// Controller's Type
  11. /// </summary>
  12. public ControllerType ControllerType { get; set; }
  13. /// <summary>
  14. /// Player's Index for the controller
  15. /// </summary>
  16. public PlayerIndex PlayerIndex { get; set; }
  17. }
  18. }