package mhcgp;

/** 
 *  Package mhcgp <br>
 *  class Mouth <p>
 *
 *  author mhc<p>
 *  This is pretty straightforward, the only thing I want to control is my
 *  my color.
 */

public class Mouth extends GP.Graphics.FilledOval {

  public Mouth(GP.Container container) {
    super(container);
    this.SetColor(new GP.Attributes.Colors.Red());
  }

}
