/*
 *	Created by	: 	Mr. C. Whittington
 *	Date		:	June 4, 2004
 *	Purpose		:	To demonstrate the use of a GUI with animation.
 */

import javax.swing.*;
class UseAnCenterGUI {
	public static void main(String [] args){
		JFrame jf=new JFrame("Graphics Panel");
		jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		jf.setContentPane(new AnCenterGUI());
		jf.pack();
		jf.setVisible(true);
	}
}
