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