LeftJoyconCommonConfig.cs 516 B

123456789101112131415
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public class LeftJoyconCommonConfig<Button>
  4. {
  5. public Button ButtonMinus { get; set; }
  6. public Button ButtonL { get; set; }
  7. public Button ButtonZl { get; set; }
  8. public Button ButtonSl { get; set; }
  9. public Button ButtonSr { get; set; }
  10. public Button DpadUp { get; set; }
  11. public Button DpadDown { get; set; }
  12. public Button DpadLeft { get; set; }
  13. public Button DpadRight { get; set; }
  14. }
  15. }