Quasar/Quasar.Common/Enums/MouseAction.cs

15 lines
218 B
C#
Raw Permalink Normal View History

2018-08-18 16:55:25 +00:00
namespace Quasar.Common.Enums
2015-07-27 15:36:18 +00:00
{
public enum MouseAction
{
LeftDown,
LeftUp,
RightDown,
RightUp,
MoveCursor,
ScrollUp,
ScrollDown,
2015-07-27 15:36:18 +00:00
None
}
}