/** * Entry point to out application * * @param argv The arguments passed to the application */ public static void main(String[] argv) { Bootstrap.runAsApplication(new NavMeshTest(), 600, 600, false); }
/** * Entry point to our test * * @param argv The arguments passed in from the command line */ public static void main(String[] argv) { Bootstrap.runAsApplication(new IsoTiledTest(), 800,600,false); }
/** * Entry point to the example game * * @param argv The arguments provided at the command line */ public static void main(String[] argv) { Bootstrap.runAsApplication(new LightTest(), 600, 600, false); }