Package chunmap.view.layer

Examples of chunmap.view.layer.LayerCollection



  public Map(View view, Painter painter) {
    this.view = view;
    this.painter = painter;
    layers = new LayerCollection();
  }
View Full Code Here


 
  public Map(int width, int height)
  {
      view = new ViewPort(width, height,Buffer);
      painter = new Painter(width + Buffer, height + Buffer);
      layers = new LayerCollection();
  }
View Full Code Here

TOP

Related Classes of chunmap.view.layer.LayerCollection

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.