Examples of WorldPropertyIsLeaf


Examples of buildcraft.core.utils.WorldPropertyIsLeaf

    FMLCommonHandler.instance().bus().register(new TickHandlerCore());

    BuildCraftAPI.isSoftProperty = new WorldPropertyIsSoft();
    BuildCraftAPI.isWoodProperty = new WorldPropertyIsWood();
    BuildCraftAPI.isLeavesProperty = new WorldPropertyIsLeaf();
    BuildCraftAPI.isOreProperty = new IWorldProperty[4];
    for (int i = 0; i < BuildCraftAPI.isOreProperty.length; i++) {
      BuildCraftAPI.isOreProperty[i] = new WorldPropertyIsOre(i);
    }
    BuildCraftAPI.isHarvestableProperty = new WorldPropertyIsHarvestable();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.