RightJoyconCommonConfig.cs 512 B

123456789101112131415
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public class RightJoyconCommonConfig<Button>
  4. {
  5. public Button ButtonPlus { get; set; }
  6. public Button ButtonR { get; set; }
  7. public Button ButtonZr { get; set; }
  8. public Button ButtonSl { get; set; }
  9. public Button ButtonSr { get; set; }
  10. public Button ButtonX { get; set; }
  11. public Button ButtonB { get; set; }
  12. public Button ButtonY { get; set; }
  13. public Button ButtonA { get; set; }
  14. }
  15. }