blob: 38f5ad3688b368ad81bbe97913d02cc1c7bd5d71 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace Ryujinx.Common.Configuration.Hid
{
public struct KeyboardHotkeys
{
public Key ToggleVsync { get; set; }
public Key Screenshot { get; set; }
public Key ShowUi { get; set; }
}
}
|