Package me.daddychurchill.CityWorld.Plats.Urban

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


  }
 
  protected PlatLot getBuilding(WorldGenerator generator, PlatMap platmap, Odds odds, int chunkX, int chunkZ) {
    switch (odds.getRandomInt(8)) {
    case 1:
      return new EmptyBuildingLot(platmap, chunkX, chunkZ);
    case 2:
      return new StoreBuildingLot(platmap, chunkX, chunkZ);
    case 3:
      return new LibraryBuildingLot(platmap, chunkX, chunkZ);
//    case 4:
View Full Code Here

TOP

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

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.