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