/// <summary> Performs a right click at the given coordinates. </summary> public static void PerformRightClick(int x, int y) { InternalHelpers.SetCursorPosition(x, y); InternalHelpers.DoRightClick(); }
/// <summary> Teleports the cursor to the given coordinates. </summary> public static void SetCursorPosition(int x, int y) { InternalHelpers.SetCursorPosition(x, y); }
/// <summary> Performs a left mouse up at the given coordinates. </summary> public static void PerformLeftMouseUp(int x, int y) { InternalHelpers.SetCursorPosition(x, y); InternalHelpers.DoLeftMouseUp(); }
/// <summary> Performs a middle mouse down at the given coordinates. </summary> public static void PerformMiddleMouseDown(int x, int y) { InternalHelpers.SetCursorPosition(x, y); InternalHelpers.DoMiddleMouseDown(); }