/** * This class just exists to run the overall program and pop up the GUI on screen. * @author Marty Stepp * @version CSE 331 Spring 2011, 5/11/2011 */ public class BallMain { public static void main(String[] args) { new BallGui(); } }