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