16 lines
241 B
C#
16 lines
241 B
C#
|
namespace Ryujinx.Input
|
||
|
{
|
||
|
public enum MouseButton : byte
|
||
|
{
|
||
|
Button1,
|
||
|
Button2,
|
||
|
Button3,
|
||
|
Button4,
|
||
|
Button5,
|
||
|
Button6,
|
||
|
Button7,
|
||
|
Button8,
|
||
|
Button9,
|
||
|
Count
|
||
|
}
|
||
|
}
|