moveTo method

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

Implementation

void moveTo( int x, int y ){
	_imgMoveX = x;
	_imgMoveY = y;
	_wndMoveX = wndPosX( _imgMoveX );
	_wndMoveY = wndPosY( _imgMoveY );
}