From 538fba826b75cdd2feffaeac684044246590cb29 Mon Sep 17 00:00:00 2001 From: Xpl0itR Date: Sun, 3 May 2020 03:00:53 +0100 Subject: Improvements to input and input configuration in the GUI. (#849) * Improvements to input and input configuration in the GUI * Requested changes * nits * more nits --- Ryujinx.Common/Configuration/Hid/InputConfig.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Ryujinx.Common/Configuration/Hid/InputConfig.cs (limited to 'Ryujinx.Common/Configuration/Hid/InputConfig.cs') diff --git a/Ryujinx.Common/Configuration/Hid/InputConfig.cs b/Ryujinx.Common/Configuration/Hid/InputConfig.cs new file mode 100644 index 00000000..540506d5 --- /dev/null +++ b/Ryujinx.Common/Configuration/Hid/InputConfig.cs @@ -0,0 +1,20 @@ +namespace Ryujinx.Common.Configuration.Hid +{ + public class InputConfig + { + /// + /// Controller Device Index + /// + public int Index { get; set; } + + /// + /// Controller's Type + /// + public ControllerType ControllerType { get; set; } + + /// + /// Player's Index for the controller + /// + public PlayerIndex PlayerIndex { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3