mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
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; }
|
||
|
}
|
||
|
}
|