Package me.daddychurchill.CityWorld.Plats.Urban

Examples of me.daddychurchill.CityWorld.Plats.Urban.StorageLot


  private final static double oddsOfWarehouse = Odds.oddsVeryLikely;
 
  @Override
  protected PlatLot getPark(WorldGenerator generator, PlatMap platmap, Odds odds, int chunkX, int chunkZ) {
    if (odds.playOdds(oddsOfStorageLot))
      return new StorageLot(platmap, chunkX, chunkZ);
    else
      return super.getPark(generator, platmap, odds, chunkX, chunkZ);
  }
View Full Code Here

TOP

Related Classes of me.daddychurchill.CityWorld.Plats.Urban.StorageLot

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.