using System.Text.Json.Serialization;
namespace Ryujinx.Common.Configuration.Hid.Controller.Motion
{
[JsonConverter(typeof(JsonMotionConfigControllerConverter))]
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; }
}
}