0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-18 18:21:41 +00:00
ryujinx-fork/Ryujinx.Input/MouseButton.cs
2021-06-14 08:42:55 +02:00

16 lines
No EOL
241 B
C#

namespace Ryujinx.Input
{
public enum MouseButton : byte
{
Button1,
Button2,
Button3,
Button4,
Button5,
Button6,
Button7,
Button8,
Button9,
Count
}
}