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, 0 insertions, 14 deletions
diff --git a/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
deleted file mode 100644
index bf440515..00000000
--- a/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-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;
- }
-}