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