Package amidst.map

Examples of amidst.map.MapObjectJungleTemple


          //getValidTemple(frag, x << 4, y << 4);
          String biomeName = BiomeLayer.getBiomeNameForFragment(frag, x << 4, y << 4);
          if (biomeName.equals("Swampland"))
            frag.addObject(new MapObjectWitchHut(x << 4, y << 4).setParent(this));
          else if (biomeName.contains("Jungle"))
            frag.addObject(new MapObjectJungleTemple(x << 4, y << 4).setParent(this));
          else
            frag.addObject(new MapObjectDesertTemple(x << 4, y << 4).setParent(this));
        }
      }
    }
View Full Code Here

TOP

Related Classes of amidst.map.MapObjectJungleTemple

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.