Quasar/Client/Enums/MouseAction.cs

15 lines
212 B
C#
Raw Normal View History

2015-07-27 08:36:18 -07:00
namespace xClient.Enums
{
public enum MouseAction
{
LeftDown,
LeftUp,
RightDown,
RightUp,
MoveCursor,
ScrollUp,
ScrollDown,
2015-07-27 08:36:18 -07:00
None
}
}