namespace Ryujinx.Common.Configuration.Hid
{
public class InputConfig
{
///
/// The current version of the input file format
///
public const int CurrentVersion = 1;
public int Version { get; set; }
public InputBackendType Backend { get; set; }
///
/// Controller id
///
public string Id { get; set; }
///
/// Controller's Type
///
public ControllerType ControllerType { get; set; }
///
/// Player's Index for the controller
///
public PlayerIndex PlayerIndex { get; set; }
}
}