Package me.daddychurchill.CityWorld.Plats.Nature

Examples of me.daddychurchill.CityWorld.Plats.Nature.MountainTentLot


  protected PlatLot createSurfaceBuildingLot(WorldGenerator generator, PlatMap platmap, int x, int z, HeightInfo heights) {
    if (generator.settings.includeHouses)
      if (platmap.getOddsGenerator().flipCoin())
        return new MountainShackLot(platmap, x, z);
      else
        return new MountainTentLot(platmap, x, z);
    return null;
  }
View Full Code Here

TOP

Related Classes of me.daddychurchill.CityWorld.Plats.Nature.MountainTentLot

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.