JoyconConfigKeyboardStick.cs
1 namespace Ryujinx.Common.Configuration.Hid.Keyboard 2 { 3 public class JoyconConfigKeyboardStick<TKey> where TKey : unmanaged 4 { 5 public TKey StickUp { get; set; } 6 public TKey StickDown { get; set; } 7 public TKey StickLeft { get; set; } 8 public TKey StickRight { get; set; } 9 public TKey StickButton { get; set; } 10 } 11 }