mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-12 01:54:24 +00:00
11 lines
137 B
C#
11 lines
137 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.Input
|
|||
|
{
|
|||
|
[Flags]
|
|||
|
public enum HidHotkeyButtons
|
|||
|
{
|
|||
|
ToggleVSync = 1 << 0,
|
|||
|
}
|
|||
|
}
|