15 lines
218 B
C#
15 lines
218 B
C#
namespace Quasar.Common.Enums
|
|
{
|
|
public enum MouseAction
|
|
{
|
|
LeftDown,
|
|
LeftUp,
|
|
RightDown,
|
|
RightUp,
|
|
MoveCursor,
|
|
ScrollUp,
|
|
ScrollDown,
|
|
None
|
|
}
|
|
}
|