Package me.daddychurchill.CityWorld.Plats.Astral

Examples of me.daddychurchill.CityWorld.Plats.Astral.AstralForestHedgeLot


  private PlatLot generateForestLot(PlatMap platmap, Odds odds, int chunkX, int chunkZ, double populationChance) {
    switch (style) {
    case FERN:
      return new AstralForestFernLot(platmap, chunkX, chunkZ, populationChance);
    case HEDGE:
      return new AstralForestHedgeLot(platmap, chunkX, chunkZ, populationChance);
    case CANOPY:
    default:
      return new AstralForestCanopyLot(platmap, chunkX, chunkZ, populationChance);
    }
  }
View Full Code Here

TOP

Related Classes of me.daddychurchill.CityWorld.Plats.Astral.AstralForestHedgeLot

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.