mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 00:42:25 -07:00
Improvements to input and input configuration in the GUI. (#849)
* Improvements to input and input configuration in the GUI * Requested changes * nits * more nits
This commit is contained in:
20
Ryujinx.Common/Configuration/Hid/KeyboardConfig.cs
Normal file
20
Ryujinx.Common/Configuration/Hid/KeyboardConfig.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace Ryujinx.Common.Configuration.Hid
|
||||
{
|
||||
public class KeyboardConfig : InputConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// Left JoyCon Keyboard Bindings
|
||||
/// </summary>
|
||||
public NpadKeyboardLeft LeftJoycon { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Right JoyCon Keyboard Bindings
|
||||
/// </summary>
|
||||
public NpadKeyboardRight RightJoycon { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Hotkey Keyboard Bindings
|
||||
/// </summary>
|
||||
public KeyboardHotkeys Hotkeys { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user