package breakout;
import java.awt.Point;


/*place holder in the brick repository vector
 *allowing to keep track of the index of the bricks
 *not a necessary class with slight modification of the code*/
public class DudBrick implements BreakOutBrick
{
	private ScreenCanvas screen;
	private BrickRepository repos;
	private Point upperlft, lowerrt;
	
	public DudBrick() {	
	}
	
	public DudBrick(ScreenCanvas screen, BrickRepository repos,
						Point upperlft, Point lowerrt)
	{
		this.screen = screen;
		this.repos = repos;
		this.upperlft = new Point(upperlft);
		this.lowerrt = new Point(lowerrt);
	}					
	
	public Point getUpperLft()
	{
		return this.upperlft;
	}


	public Point getLowerRt()
	{
		return this.lowerrt;
	}
	
	public ScreenCanvas getCanvas ()
	{
		return this.screen;
	}
	
	public BrickRepository getBrickRepos()
	{
		return this.repos;
	}

}