2021-04-14 12:28:43 +02:00
|
|
|
|
namespace Ryujinx.Common.Configuration.Hid
|
2019-12-21 20:52:31 +01:00
|
|
|
|
{
|
2022-07-05 18:06:31 +00:00
|
|
|
|
public class KeyboardHotkeys
|
2019-12-21 20:52:31 +01:00
|
|
|
|
{
|
2020-04-30 14:07:41 +02:00
|
|
|
|
public Key ToggleVsync { get; set; }
|
2021-06-28 20:09:43 +00:00
|
|
|
|
public Key Screenshot { get; set; }
|
2021-08-05 00:28:19 +03:00
|
|
|
|
public Key ShowUi { get; set; }
|
2021-09-11 22:08:25 +02:00
|
|
|
|
public Key Pause { get; set; }
|
2021-12-23 11:33:56 -05: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 20:52:31 +01:00
|
|
|
|
}
|
2021-08-05 00:28:19 +03:00
|
|
|
|
}
|