/* * Main class: pretty much its only purpose is to contain the main method * that gets everything started. In this case, creates an ÏnvadersWindow * which contains all GUI elements. */ public class InvadersMain { public static void main(String[] args) { InvadersWindow window = new InvadersWindow(); window.setTitle("Space Invaders 1.0"); window.setSize(600, 400); window.setVisible(true); } }