2021-04-14 11:28:43 +01:00
|
|
|
|
namespace Ryujinx.Common.Configuration.Hid
|
2019-12-21 19:52:31 +00:00
|
|
|
|
{
|
2022-07-05 19:06:31 +01:00
|
|
|
|
public class KeyboardHotkeys
|
2019-12-21 19:52:31 +00:00
|
|
|
|
{
|
2020-04-30 13:07:41 +01:00
|
|
|
|
public Key ToggleVsync { get; set; }
|
2021-06-28 21:09:43 +01:00
|
|
|
|
public Key Screenshot { get; set; }
|
2021-08-04 22:28:19 +01:00
|
|
|
|
public Key ShowUi { get; set; }
|
2021-09-11 21:08:25 +01:00
|
|
|
|
public Key Pause { get; set; }
|
2021-12-23 16:33:56 +00:00
|
|
|
|
public Key ToggleMute { get; set; }
|
2022-07-24 19:44:47 +01:00
|
|
|
|
public Key ResScaleUp { get; set; }
|
|
|
|
|
public Key ResScaleDown { get; set; }
|
2022-10-02 10:38:37 +01:00
|
|
|
|
public Key VolumeUp { get; set; }
|
|
|
|
|
public Key VolumeDown { get; set; }
|
2019-12-21 19:52:31 +00:00
|
|
|
|
}
|
2021-08-04 22:28:19 +01:00
|
|
|
|
}
|