aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs')
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs b/src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs
index ca2d0176..e121b9a5 100644
--- a/src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs
@@ -1,15 +1,15 @@
namespace Ryujinx.Common.Configuration.Hid
{
- public class RightJoyconCommonConfig<Button>
+ public class RightJoyconCommonConfig<TButton>
{
- public Button ButtonPlus { get; set; }
- public Button ButtonR { get; set; }
- public Button ButtonZr { get; set; }
- public Button ButtonSl { get; set; }
- public Button ButtonSr { get; set; }
- public Button ButtonX { get; set; }
- public Button ButtonB { get; set; }
- public Button ButtonY { get; set; }
- public Button ButtonA { get; set; }
+ public TButton ButtonPlus { get; set; }
+ public TButton ButtonR { get; set; }
+ public TButton ButtonZr { get; set; }
+ public TButton ButtonSl { get; set; }
+ public TButton ButtonSr { get; set; }
+ public TButton ButtonX { get; set; }
+ public TButton ButtonB { get; set; }
+ public TButton ButtonY { get; set; }
+ public TButton ButtonA { get; set; }
}
-} \ No newline at end of file
+}