Package SuperCraft

Source Code of SuperCraft.Launcher

package SuperCraft;
import Engine.*;
/**
* Write a description of class Launcher here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Launcher
{
  public static void main(String[] args) {
    System.out.println("Starting Game");
       
       
      
        Engine engine = new Engine("MarioTest");
        Level1 world = new Level1(engine);
        engine.AddRenderComponent(world);

        System.out.println("Finished adding World");
        engine.start();
     }
   

}
TOP

Related Classes of SuperCraft.Launcher

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.