mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-22 11:50:17 +00:00
15 lines
244 B
C#
15 lines
244 B
C#
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Hid
|
|
{
|
|
[Flags]
|
|
enum MouseButton : uint
|
|
{
|
|
None = 0,
|
|
Left = 1 << 0,
|
|
Right = 1 << 1,
|
|
Middle = 1 << 2,
|
|
Forward = 1 << 3,
|
|
Back = 1 << 4,
|
|
}
|
|
}
|