Package me.daddychurchill.CityWorld.Plats.Rural

Examples of me.daddychurchill.CityWorld.Plats.Rural.HouseLot


  protected PlatLot getFarmLot(WorldGenerator generator, PlatMap platmap, Odds odds, int chunkX, int chunkZ) {
    return new FarmLot(platmap, chunkX, chunkZ);
  }
 
  protected PlatLot getHouseLot(WorldGenerator generator, PlatMap platmap, Odds odds, int chunkX, int chunkZ) {
    return new HouseLot(platmap, chunkX, chunkZ);
  }
View Full Code Here


  protected PlatLot getBackfillLot(WorldGenerator generator, PlatMap platmap, Odds odds, int chunkX, int chunkZ) {
    return null; // this will eventually get filled in with nature
  }
 
  protected PlatLot getHouseLot(WorldGenerator generator, PlatMap platmap, Odds odds, int chunkX, int chunkZ) {
    return new HouseLot(platmap, chunkX, chunkZ);
  }
View Full Code Here

TOP

Related Classes of me.daddychurchill.CityWorld.Plats.Rural.HouseLot

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.