package shape;

public interface Shape {
	double area();
	boolean isBigger(Shape shape);
	void move(double deltaX, double deltaY);
}
