package yourwork;

import java.awt.*;
import ignorethis.Mover;


/**
 * NAME: YOUR NAME HERE
 * COURSE: CompSci 6
 * DATE: April 15, 2010
 * PURPOSE:
 *   Represents an original piece of recursive art.
 *   
 *   DESCRIBE YOUR ARTWORK HERE.
 */
public class Student extends Mover
{
    /**
     * Construct a picture at the given position, with the given size, and color.
     */
    public Student (Point center, Dimension size)
    {
        super(center, size, new Point(0, 0));
    }


    /**
     * Render picture in the given graphics context.
     */
    public void paint (Graphics pen)
    {
        super.paint(pen);

        // TODO: paint me
    }
}
