namespace Ryujinx.Common.Configuration.Hid.Controller.Motion
{
public class CemuHookMotionConfigController : MotionConfigController
{
///
/// Motion Controller Slot
///
public int Slot { get; set; }
///
/// Motion Controller Alternative Slot, for RightJoyCon in Pair mode
///
public int AltSlot { get; set; }
///
/// Mirror motion input in Pair mode
///
public bool MirrorInput { get; set; }
///
/// Host address of the DSU Server
///
public string DsuServerHost { get; set; }
///
/// Port of the DSU Server
///
public int DsuServerPort { get; set; }
}
}