GenericInputConfigurationCommon.cs 482 B

123456789101112131415
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public class GenericInputConfigurationCommon<Button> : InputConfig where Button : unmanaged
  4. {
  5. /// <summary>
  6. /// Left JoyCon Controller Bindings
  7. /// </summary>
  8. public LeftJoyconCommonConfig<Button> LeftJoycon { get; set; }
  9. /// <summary>
  10. /// Right JoyCon Controller Bindings
  11. /// </summary>
  12. public RightJoyconCommonConfig<Button> RightJoycon { get; set; }
  13. }
  14. }