/** * The class that runs the DrawFace game. * @author Viera K. Proulx * @version 11-12-2013 * */ public class GameRunner { /** An instance of the Examples class that defines * the initial world */ ExamplesDrawFace edf = new ExamplesDrawFace(); /** the initial world that invokes the bigBang method */ DrawFace dfw = this.edf.initDrawFace(); /** * Method that runs the game */ void run() { this.dfw.bigBang(DrawFace.WIDTH, DrawFace.HEIGHT, 0.1); } /** * Main method to run the game * @param argv unused */ public static void main(String[] argv) { GameRunner gm = new GameRunner(); gm.run(); } }