mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-14 07:37:04 +00:00
* Rename Ryujinx.UI.Common * Rename Ryujinx.UI.LocaleGenerator * Update in Files AboutWindow * Configuration State * Rename projects * Ryujinx/UI * Fix build * Main remaining inconsistencies * HLE.UI Namespace * HLE.UI Files * Namespace * Ryujinx.UI.Common.Configuration.UI * Ryujinx.UI.Common,Configuration.UI Files * More instances
14 lines
367 B
C#
14 lines
367 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;
|
|
}
|
|
}
|