Package me.daddychurchill.CityWorld.Plats.Floating

Examples of me.daddychurchill.CityWorld.Plats.Floating.FloatingBlimpLot


  protected void validateLots(WorldGenerator generator, PlatMap platmap) {
    // find blimp moorings
    for (int x = 0; x < PlatMap.Width; x++) {
      for (int z = 0; z < PlatMap.Width; z++) {
        if (needBlimpLot(platmap, x, z))
          platmap.setLot(x, z, new FloatingBlimpLot(platmap, platmap.originX + x, platmap.originZ + z));
      }
    }
  }
View Full Code Here

TOP

Related Classes of me.daddychurchill.CityWorld.Plats.Floating.FloatingBlimpLot

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.