2021-04-14 12:28:43 +02:00
|
|
|
|
namespace Ryujinx.Common.Configuration.Hid
|
2019-12-21 20:52:31 +01:00
|
|
|
|
{
|
2022-07-05 20:06:31 +02: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 22:09:43 +02:00
|
|
|
|
public Key Screenshot { get; set; }
|
2021-08-04 23:28:19 +02:00
|
|
|
|
public Key ShowUi { get; set; }
|
2021-09-11 22:08:25 +02:00
|
|
|
|
public Key Pause { get; set; }
|
2021-12-23 17:33:56 +01:00
|
|
|
|
public Key ToggleMute { get; set; }
|
2022-07-24 20:44:47 +02:00
|
|
|
|
public Key ResScaleUp { get; set; }
|
|
|
|
|
public Key ResScaleDown { get; set; }
|
2022-10-02 11:38:37 +02:00
|
|
|
|
public Key VolumeUp { get; set; }
|
|
|
|
|
public Key VolumeDown { get; set; }
|
2019-12-21 20:52:31 +01:00
|
|
|
|
}
|
2021-08-04 23:28:19 +02:00
|
|
|
|
}
|