mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 21:18:34 +00:00
538fba826b
* Improvements to input and input configuration in the GUI * Requested changes * nits * more nits
20 lines
489 B
C#
20 lines
489 B
C#
namespace Ryujinx.Common.Configuration.Hid
|
|
{
|
|
public class InputConfig
|
|
{
|
|
/// <summary>
|
|
/// Controller Device Index
|
|
/// </summary>
|
|
public int Index { get; set; }
|
|
|
|
/// <summary>
|
|
/// Controller's Type
|
|
/// </summary>
|
|
public ControllerType ControllerType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Player's Index for the controller
|
|
/// </summary>
|
|
public PlayerIndex PlayerIndex { get; set; }
|
|
}
|
|
} |