blob: bf440515ba0d7ad55da68a5cb97c63217348a1f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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;
}
}
|