package NGPdemos;

/**
 * AlienShapeSpiffy.java
 *
 *
 * Created: Tue Feb 20 14:48:10 2001
 *
 * @author Brown U. lecture notes modified by Stuart C. Shapiro
 */

public class AlienShapeSpiffy extends AlienShape{
    // AlienShapeSpiffy contains an AlienTimer
    private AlienTimer _myTimer;

    public AlienShapeSpiffy (NGP.Containers.DrawingPanel dp){
	super(dp);
	// create Timer and start it right away
	_myTimer = new AlienTimer(this);
	_myTimer.start();
    }
}// AlienShapeSpiffy
