ControllerSupportArgHeader.cs 525 B

123456789101112131415161718
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.HOS.Applets
  3. {
  4. #pragma warning disable CS0649
  5. [StructLayout(LayoutKind.Sequential, Pack = 1)]
  6. struct ControllerSupportArgHeader
  7. {
  8. public sbyte PlayerCountMin;
  9. public sbyte PlayerCountMax;
  10. public byte EnableTakeOverConnection;
  11. public byte EnableLeftJustify;
  12. public byte EnablePermitJoyDual;
  13. public byte EnableSingleMode;
  14. public byte EnableIdentificationColor;
  15. }
  16. #pragma warning restore CS0649
  17. }