/**
 * Represents a pixel, which is a red, green, and blue value This class is
 * COMPLETE. Don't change it.
 */
public class Pixel {
	// RGB color values for this pixel (0-255)
	public int red;
	public int green;
	public int blue;

	/**
	 * Constructor for objects of class Pixel Initializes the pixel values;
	 */
	public Pixel(int red, int green, int blue) {
		this.red = red;
		this.green = green;
		this.blue = blue;
	}
}
