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; }
}
}