CemuHookMotionConfigController.cs 839 B

123456789101112131415161718192021222324252627282930
  1. namespace Ryujinx.Common.Configuration.Hid.Controller.Motion
  2. {
  3. public class CemuHookMotionConfigController : MotionConfigController
  4. {
  5. /// <summary>
  6. /// Motion Controller Slot
  7. /// </summary>
  8. public int Slot { get; set; }
  9. /// <summary>
  10. /// Motion Controller Alternative Slot, for RightJoyCon in Pair mode
  11. /// </summary>
  12. public int AltSlot { get; set; }
  13. /// <summary>
  14. /// Mirror motion input in Pair mode
  15. /// </summary>
  16. public bool MirrorInput { get; set; }
  17. /// <summary>
  18. /// Host address of the DSU Server
  19. /// </summary>
  20. public string DsuServerHost { get; set; }
  21. /// <summary>
  22. /// Port of the DSU Server
  23. /// </summary>
  24. public int DsuServerPort { get; set; }
  25. }
  26. }