1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-26 01:26:47 -06:00
ryujinx/Ryujinx.Input/MouseButton.cs

16 lines
241 B
C#
Raw Normal View History

2021-06-14 06:42:55 +00:00
namespace Ryujinx.Input
{
public enum MouseButton : byte
{
Button1,
Button2,
Button3,
Button4,
Button5,
Button6,
Button7,
Button8,
Button9,
Count
}
}