Package civquest.map.heightGen.plate

Examples of civquest.map.heightGen.plate.PlateHeightGenerator


      maptype = FLAT;
    }
    Section generatorsection = registry.getRuleset(ruleset).getSection("generators");
    String heightgen = generatorsection.getField("height").getStringValue();
    if(heightgen.equals("PlateHeightGenerator")) {
      heightGenerator = new PlateHeightGenerator(registry);
    } else {
      messages.err("MapGenerator", "loadConfiguration: "
             + heightgen + " is not a valid " +
             "HeightGenerator!!! Using NO HeightGenerator!!!");
      heightGenerator = null;
View Full Code Here

TOP

Related Classes of civquest.map.heightGen.plate.PlateHeightGenerator

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.