import javax.swing.JFrame;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class Astrosmash {
    private static final int FRAME_WIDTH = 520;
    private static final int FRAME_HEIGHT = 590;

    public static void main (String [] args) {
	JFrame frame = new JFrame ("Astrosmash v1.0");
	frame.setSize (FRAME_WIDTH, FRAME_HEIGHT);
	frame.addWindowListener(
	    new WindowAdapter () {
		    public void windowClosing (WindowEvent e) {
			System.exit (0);
		    }
		}
          );

	Grid grid = new Grid (50, 50);
	Simulator ca = new Simulator (FRAME_HEIGHT, FRAME_WIDTH, grid);
	Container content = frame.getContentPane ();


	if (content != null) {
	    content.add (ca, BorderLayout.CENTER);
	} else {
	    System.err.println ("ERROR: No content pane");
	}

	frame.show ();
    }
}