Advertisement
Guest User

DiMartino

a guest
Oct 24th, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public static void main(String args[])
  2. {
  3. BallBounce4 frame = new BallBounce4();
  4. frame.setSize(new Dimension(900, 900));
  5. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  6. frame.setVisible(true);
  7.  
  8. Timer timer = new Timer(10, new ActionListener(){
  9.  
  10. @Override
  11. public void actionPerformed(ActionEvent arg0) {
  12. frame.repaint();
  13. }
  14.  
  15. });
  16. timer.start();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement