requestCursorMove method

void requestCursorMove(
  1. int x,
  2. int y
)

Requests the cursor be moved to coordinates (x, y) on next render.

Implementation

void requestCursorMove(int x, int y) {
  _cursorX = x;
  _cursorY = y;
}