ControllerAppletUiArgs.cs 366 B

1234567891011121314
  1. using Ryujinx.HLE.HOS.Services.Hid;
  2. using System.Collections.Generic;
  3. namespace Ryujinx.HLE.HOS.Applets
  4. {
  5. public struct ControllerAppletUiArgs
  6. {
  7. public int PlayerCountMin;
  8. public int PlayerCountMax;
  9. public ControllerType SupportedStyles;
  10. public IEnumerable<PlayerIndex> SupportedPlayers;
  11. public bool IsDocked;
  12. }
  13. }