Package Hexel.util

Examples of Hexel.util.FrameRateTracker


  public Engine() {
    Cleanup cleanup = new Cleanup();
    this.chunks = new Chunks(cleanup, 10 * 10 * 10);
    this.thingSimulator = new ThingSimulator(cleanup, this, this.chunks);
    this.renderer = new Renderer(this, this.chunks);
    this.fps = new FrameRateTracker(5);
    this.chunkVisibilityManager = new ChunkVisibilityManager(this, this.chunks, this.renderer);
    this.worldSimulator = new BlockSimulator(this, this.chunks, this.chunkVisibilityManager);
    this.zsp = new ZombieSpawnPlanner(this);
    setStage(Stage.START_MENU);
    this.time = 0;
View Full Code Here

TOP

Related Classes of Hexel.util.FrameRateTracker

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.