package breakout;//all the information for Breakout is in one file

import java.awt.*; //necessary import statement



//this class creates a frame for the image (GIF animation) to appear on
public class MyFrame extends Frame
{
	
	public MyFrame(ImageCanvas ic) //constructor which takes an ImageCanvas as arguments
	{
		FlowLayout fl = new FlowLayout();
		add(ic);	//the frame adds the ImageCanvas
		this.setLayout(fl);
	}
}