Package com.golden.gamedev

Examples of com.golden.gamedev.GameLoader


  void PlayGame() throws IOException {

    // create ViciousCycle game
    vcGame = new VCGame();   
    game = new GameLoader();
   
    game.setup(vcGame, new Dimension(960, 640), false);
    // create logic system

    gos = new VCGOS();   
View Full Code Here


  /**
   * Main method to run this info frame.
   * @param args Application arguments.
   */
  public static void main(String[] args) {
    GameLoader game = new GameLoader();
    game.setup(new LibInfo(), new Dimension(600, 450), false);
    game.start();
  }
View Full Code Here

TOP

Related Classes of com.golden.gamedev.GameLoader

Copyright © 2018 www.massapicom. 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.