package mhcsp;

/** 
 *  Package mhcgp <br>
 *  class Applet <p>
 *
 *  author mhc<p>
 *  The applet should really only create the SnowFace, so that's what I'll do.
 *  _face is private because I only want the applet able to access it directly.
 *  That seems silly for the Applet class, but it is a good habit to only
 *  make variables accessible that absolutely need to be.
 */

public class Applet extends cs015.SP.Applet {

  private SnowFace _face; //we want to contain a SnowFace

  public Applet() {
    _face = new SnowFace(); //instantiate one SnowFace
  }

}
