

import java.awt.*;
public class StarClass {
	
private final int xPoints[] = {	55, 67, 109, 73, 83, 55, 27, 37, 1, 43 };
private final int yPoints[] =  { 0, 36,  36, 54, 96, 72, 96, 54, 36, 36 };

public Polygon starImage;
public Color starColor;

public StarClass()
{
	starImage = new Polygon( xPoints, yPoints, 10 );
	starColor = new Color( 255, 255, 255 );
}

}
