Advertisement
Guest User

Untitled

a guest
May 28th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package cs;
  2.  
  3. import javax.swing.*;
  4.  
  5. public class Bizuca extends JFrame {
  6. public Bizuca ()
  7. {
  8. add(new Game());
  9. setTitle("Bizuca V 1.1");
  10. setDefaultCloseOperation(EXIT_ON_CLOSE);
  11.  
  12. setSize(1280,720);
  13. setVisible(true);
  14. setResizable(true);
  15. }
  16.  
  17. public static void main(String[] args) {
  18. new Bizuca();
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement