1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-15 12:20:04 -06:00
ryujinx/Ryujinx.Input/MouseButton.cs

16 lines
241 B
C#
Raw Normal View History

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