mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 22:36:39 +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,
|
|||
|
}
|
|||
|
}
|