14 lines
366 B
C#
14 lines
366 B
C#
|
using Ryujinx.HLE.HOS.Services.Hid;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Ryujinx.HLE.HOS.Applets
|
||
|
{
|
||
|
public struct ControllerAppletUiArgs
|
||
|
{
|
||
|
public int PlayerCountMin;
|
||
|
public int PlayerCountMax;
|
||
|
public ControllerType SupportedStyles;
|
||
|
public IEnumerable<PlayerIndex> SupportedPlayers;
|
||
|
public bool IsDocked;
|
||
|
}
|
||
|
}
|