ControllerSupportArgHeader.cs 372 B

12345678910111213
  1. namespace Ryujinx.HLE.HOS.Applets
  2. {
  3. struct ControllerSupportArgHeader
  4. {
  5. public sbyte PlayerCountMin;
  6. public sbyte PlayerCountMax;
  7. public byte EnableTakeOverConnection;
  8. public byte EnableLeftJustify;
  9. public byte EnablePermitJoyDual;
  10. public byte EnableSingleMode;
  11. public byte EnableIdentificationColor;
  12. }
  13. }