import java.awt.Color;

/**
 * A peanut in Pick up the Peanuts.
 *
 * @author Jim Glenn
 * @version 0.1 1/20/2009
 */

public class Peanut extends Sprite
{
    /**
     * The size of a peanut.
     */

    public static final double DEFAULT_SIZE = 0.01;

    /**
     * Creates a new peanut at the given position.
     * The peanut will be red.
     *
     * @param initX an x-coordinate within the world this peanut will be in
     * @param initY a y-coordinate within the world this peanut will be in
     */

    public Peanut(double initX, double initY)
    {
	super(initX, initY, DEFAULT_SIZE, Color.ORANGE);
    }
}

