ControllerSupportArgHeader.cs 434 B

123456789101112131415
  1. namespace Ryujinx.HLE.HOS.Applets
  2. {
  3. #pragma warning disable CS0649
  4. struct ControllerSupportArgHeader
  5. {
  6. public sbyte PlayerCountMin;
  7. public sbyte PlayerCountMax;
  8. public byte EnableTakeOverConnection;
  9. public byte EnableLeftJustify;
  10. public byte EnablePermitJoyDual;
  11. public byte EnableSingleMode;
  12. public byte EnableIdentificationColor;
  13. }
  14. #pragma warning restore CS0649
  15. }