1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-10-03 07:45:51 -05:00
Files
ryujinx/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
2023-04-27 23:51:14 +02:00

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;
}
}