package mhcgp;

/** 
 *  Package mhcgp <br>
 *  class Applet <p>
 *
 *  author mhc<p>
 *  The applet should not being doing much except for instantiating the face.
 */

public class Applet extends GP.Containers.Applet {

  private Face _face;

  public Applet() {
    super();
    _face = new Face(this); //I'm the container, so I pass myself to the face!
  }

}
