// // FILE: NewBallWorld.java // AUTHOR: Eugene Wallingford // DATE: 2012/10/11 // COMMENT: a BallWorld parameterized with a vanilla Ball // // MODIFIED: // CHANGE: // public class NewBallWorld { public static void main( String[] args ) { Ball ball = new Ball(5, 5, 20, 3, 2); BallWorldFrame world = new BallWorldFrame( ball ); world.setVisible( true ); } }