Cursor.Move - screenshakes/Desktopia GitHub Wiki
Moves the cursor of a given distance, in pixel.
public static void Move(int x, int y)
{
SetCursorPos((int) position.x + x, (int) position.y + y);
}
public static void Move(Vector2 position)
{
SetCursorPos((int) (position.x + Position.x), (int) (position.y + Position.y));
}