package yourwork;

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

//Authors: PUT YOUR NAMES HERE
//
//Date: April 10, 2010

/**
 * Represents an archery target.
 *
 * @author Robert C. Duvall
 */
public class Target2 extends Mover
{
    private int myNumRings;
    private Target2 myNext;


    //////////////////////////////////////////////////////////////
    // constructors
    /**
     * Construct a target at the given position, with the given
     * size, and color.
     *
     * @param center position of the target
     * @param size dimensions of the target
     * @param color color of the target
     */
    public Target2 (int numRings, Point center, Dimension size)
    {
        super(center, size, new Point(0, 0));
        myNumRings = numRings;
        // TODO: create a smaller target
    }


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

        // TODO: paint me
        // TODO: paint my next
    }
}
