package xmp_interface;

interface Shapes {
	void move(double xd, double yd);
	void grow(double factor);
	Point getllc();
	Point getur();
}