Example #1
0
void TotalChange(Point &point)
{
	cout << "What is the move by X line? ";
	int dx;
	cin >> dx;
	point.SetChangeX(dx);
	cout << "\nWhat is the move by Y line? ";
	int dy;
	cin >> dy;
	point.SetChangeY(dy);
	cout << endl << endl;
}