Updated comments in main

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
2012-04-04 00:12:25 -04:00
parent c46d2b4282
commit 8611bad5b8

View File

@@ -21,20 +21,13 @@ package com.RickBarrette.asteroids;
/** /**
* This is the main class of my asteroids game. * This is the main class of my asteroids game.
* This application is based from "A Guide to Programming Asteroids As a Java Applet" by Brandon Carroll.
* @author ricky barrette * @author ricky barrette
*/ */
public class Main { public class Main {
public static final boolean DEBUG = false; public static final boolean DEBUG = false;
/**
* @param args
* @author ricky barrette
*/
public static void main(String[] args) {
new Main();
}
/** /**
* Creates a new Main * Creates a new Main
* @author ricky barrette * @author ricky barrette
@@ -45,4 +38,11 @@ public class Main {
game.startGame(); game.startGame();
} }
} /**
* @param args
* @author ricky barrette
*/
public static void main(String[] args) {
new Main();
}
}