MoonWorks/src/Input/MouseButtonCode.cs

15 lines
240 B
C#
Raw Normal View History

2022-04-27 18:37:35 +00:00
namespace MoonWorks.Input
{
/// <summary>
/// Can be used to determine virtual mouse button state without a direct reference to the button object.
/// </summary>
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
}