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