mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-11 12:01:30 +00:00
14 lines
No EOL
225 B
C#
14 lines
No EOL
225 B
C#
using System;
|
|
|
|
namespace Ryujinx.Common.Configuration.Hid
|
|
{
|
|
[Flags]
|
|
public enum KeyModifier
|
|
{
|
|
None = 0,
|
|
Alt = 1 << 0,
|
|
Control = 1 << 1,
|
|
Shift = 1 << 2,
|
|
Meta = 1 << 3
|
|
}
|
|
} |