Package roberto

Source Code of roberto.Main

package roberto;
import age.GameEngine;

public class Main {

  public static void main(String[] args){
    GameEngine game = new GameEngine();
    game.addGameController(0, new LocalDeTeste());
    game.setSpeed(1);
    game.run();
  }
 
}
TOP

Related Classes of roberto.Main

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.