aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
new file mode 100644
index 00000000..cc15a406
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
@@ -0,0 +1,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;
+ }
+} \ No newline at end of file