mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-28 08:25:13 +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
15 lines
367 B
C#
15 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;
|
|
}
|
|
}
|