setPosition method

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

Implementation

void setPosition(int x, int y) {
  _cur.x = x;
  _cur.y = y;
}