Package Hexel.util

Examples of Hexel.util.Cleanup


  public void setInput(PCInput input){
    this.input = input;
  }

  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);
View Full Code Here

TOP

Related Classes of Hexel.util.Cleanup

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.