namespace Ryujinx.Common.Configuration.Hid.Controller.Motion
{
public class MotionConfigController
{
public MotionInputBackendType MotionBackend { get; set; }
///
/// Gyro Sensitivity
///
public int Sensitivity { get; set; }
///
/// Gyro Deadzone
///
public double GyroDeadzone { get; set; }
///
/// Enable Motion Controls
///
public bool EnableMotion { get; set; }
}
}