Package civquest.map

Examples of civquest.map.IsoMapData


    String mapType = loadedData.getString("mapType");
    LoadedData mapDataData = loadedData.getSubData("mapData");
    if (mapType.equals("Flat")) {
      assert false : "Flat case not implemented!";
    } else if (mapType.equals("Iso")) {
      mapData = new IsoMapData(this, registry, mapDataData, step);
    } else {
      assert false : "Case not implemented!";
    }
  }
View Full Code Here

TOP

Related Classes of civquest.map.IsoMapData

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.