mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:58:40 +00:00
62f8ceb60b
* hotkeys * comments * update implementation to include custom scales * copypasta * review changes * hotkeys * comments * update implementation to include custom scales * copypasta * review changes * Remove outdated configuration and force hotkeys unbound * Add avalonia support * Fix configuration file * Update GTK implementation and fix config... again. * Remove legacy implementation + nits * Avalonia locales (DeepL) * review * Remove colon from chinese locale * Update ConfigFile * locale fix
14 lines
397 B
C#
14 lines
397 B
C#
namespace Ryujinx.Common.Configuration.Hid
|
|
{
|
|
public class KeyboardHotkeys
|
|
{
|
|
public Key ToggleVsync { get; set; }
|
|
public Key Screenshot { get; set; }
|
|
public Key ShowUi { get; set; }
|
|
public Key Pause { get; set; }
|
|
public Key ToggleMute { get; set; }
|
|
public Key ResScaleUp { get; set; }
|
|
public Key ResScaleDown { get; set; }
|
|
}
|
|
}
|