/* * SnowBall.java * * Created on July 1, 2004, 12:16 PM */ /** * * @author levenick */ public class SnowBall extends FilledCircle { /** Creates a new instance of SnowBall */ public SnowBall() { } public SnowBall(int x, int y, int r) { super(x,y,r,java.awt.Color.YELLOW); } public void melt() { setRadius(getRadius()*9/10); } }