Skip to content
Snippets Groups Projects
Select Git revision
  • 8802ebfb49018e9faf999fad402f6ef6f2061587
  • master default
  • powerUp
  • ScoringSystem
  • gameLogic
  • UserLogin
  • main protected
7 results

App.java

Blame
  • Aarti Bhattarai's avatar
    Closes #11 Feature to spawn Multiple balls
    abhatta5 authored
    248bd0bb
    History
    App.java 467 B
    /*
     * This Java source file was generated by the Gradle 'init' task.
     */
    package brickbreaker;
    
    import javax.swing.JFrame;
    
    public class App {
        public static void main(String[] args) {
            JFrame obj = new JFrame();
            GamePanel gamePanel = new GamePanel();
    	obj.setBounds(10, 10, 700, 600);
    	obj.setTitle("Brick Breaker");
    	obj.setResizable(false);
    	obj.setVisible(true);
    	obj.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    	obj.add(gamePanel);
        }
    }