MoonWorks/src/Input/MouseButtonCode.cs

12 lines
103 B
C#
Raw Normal View History

2022-04-27 18:37:35 +00:00
namespace MoonWorks.Input
{
2022-11-18 18:34:32 +00:00
public enum MouseButtonCode
{
Left,
Right,
Middle,
X1,
X2
2022-11-18 18:34:32 +00:00
}
2022-04-27 18:37:35 +00:00
}