moveTo method

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

Moves the cursor to the given x and y position.

Implementation

void moveTo(int x, int y) {
  _renderer.moveTo(x, y);
}