Package com.oxidevelopment.bleakengine.scene

Examples of com.oxidevelopment.bleakengine.scene.Scene


  public static void startGame() {
    initGL();
   
    while (!Display.isCloseRequested()) {
      GL11.glClear(GL11.GL_COLOR_BUFFER_BIT | GL11.GL_DEPTH_BUFFER_BIT);
      Scene scene = SceneManager.getScene();
      scene.update();
      scene.draw();
    }
   
    DisplayManager.destroy();
  }
View Full Code Here

TOP

Related Classes of com.oxidevelopment.bleakengine.scene.Scene

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.