showCursor method

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

Shows the cursor at the given (x, y) position.

Implementation

void showCursor(int x, int y) {
  setCursorPosition(x, y);
}