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

public class MakeBox extends WindowController{

	// make a box when the mouse is pressed
	public void onMousePress(Location point){
		new FilledRect(40,40,20,20,canvas);
	}
	   
}