Examples of PlateHeightGenerator


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
Copyright © 2018 www.massapi.com. 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.