public class GreatTree extends BasicTree {

    GreatTree(int x, int y) {
	super(x, y);
    }

    public void makeGround() {
	System.out.println("--------");
    }

}
