InputConfig.cs 728 B

1234567891011121314151617181920212223242526272829
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public class InputConfig
  4. {
  5. /// <summary>
  6. /// The current version of the input file format
  7. /// </summary>
  8. public const int CurrentVersion = 1;
  9. public int Version { get; set; }
  10. public InputBackendType Backend { get; set; }
  11. /// <summary>
  12. /// Controller id
  13. /// </summary>
  14. public string Id { get; set; }
  15. /// <summary>
  16. /// Controller's Type
  17. /// </summary>
  18. public ControllerType ControllerType { get; set; }
  19. /// <summary>
  20. /// Player's Index for the controller
  21. /// </summary>
  22. public PlayerIndex PlayerIndex { get; set; }
  23. }
  24. }