package breakout;
import java.awt.Point;


//interface that all bricks must implement
public interface BreakOutBrick
{
	public Point getUpperLft();//allows to get upperlft corner of a brick
	public Point getLowerRt(); //allows to access lowerrt corner of a brick
	public ScreenCanvas getCanvas();
	public BrickRepository getBrickRepos();
	
}