package breakout;
import java.awt.Point;


/* interface for which a ball implements
 * used in class BrickRepository to check if a brick was hit
 * used in class BallRepository to add balls to the ball vector*/
public interface BreakOutBall  
{
	public Point getCenter();
	public double getRadius();
	public double getXvelocity();
	public double getYvelocity();
	public void changeXvelocity(double xVel);
	public void changeYvelocity(double yVel);
	
}