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