package mhcgp;

/** 
 *  Package mhcgp <br>
 *  class Pupil <p>
 *
 *  author mhc
 *  The eye is going to control most of my attributes, so I'll just set my
 *  color and be done with it.
 */

public class Pupil extends GP.Graphics.FilledOval {

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

}
