package breakout;//all the imformation for Breakout is in one file
import java.awt.event.*;
import java.awt.*;
import cs101.io.*;				// Necessary  import statements
import cs101.awt.*;
import cs101.net.*;


//the Main class for Image 
public class ImageMain
{
	public static void main(String [] args)//necessary startup method
	{
		
		ImageCanvas im=new ImageCanvas();//creation of a new ImageCanvas
		MyFrame f = new MyFrame(im);
		f.setSize(800, 700);
		f.setLocation(100, 30);	//information for the frame (size, location). 
		f.show();
		f.repaint(); //repaints the frame 
			
	}
	
}