Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package giereczka;
  2. import javax.swing.JFrame;
  3. public class Giereczka {
  4. public static void main(String[] args) {
  5. JFrame obj = new JFrame();
  6. Gameplay gameplay = new Gameplay();
  7. obj.setBounds(10,10,700,600);
  8. obj.setTitle("Breakout Ball");
  9. obj.setResizable(false);
  10. obj.setVisible(true);
  11. obj.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  12. obj.add(gameplay);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement