mirror of https://github.com/quasar/Quasar.git
13 lines
174 B
C#
13 lines
174 B
C#
|
namespace xServer.Enums
|
|||
|
{
|
|||
|
public enum MouseAction
|
|||
|
{
|
|||
|
LeftDown,
|
|||
|
LeftUp,
|
|||
|
RightDown,
|
|||
|
RightUp,
|
|||
|
MoveCursor,
|
|||
|
None
|
|||
|
}
|
|||
|
}
|