import objectdraw.*;
import java.awt.*;

public class MakeBox extends WindowController{

	// make a box where you pressed the mouse
	public void onMousePress(Location point){
		new FilledRect(point,50,50,canvas);
	}
   
}