Examples of MaterialBeehive


Examples of forestry.apiculture.MaterialBeehive

import forestry.core.render.TextureManager;

public class BlockAlveary extends BlockStructure {

  public BlockAlveary() {
    super(new MaterialBeehive(false));
    setHardness(1.0f);
    setCreativeTab(Tabs.tabApiculture);
  }
View Full Code Here

Examples of forestry.apiculture.MaterialBeehive

import forestry.core.utils.StackUtils;

public class BlockBeehives extends BlockContainer {

  public BlockBeehives() {
    super(new MaterialBeehive(true));
    setLightLevel(0.8f);
    setHardness(1.0f);
    setCreativeTab(Tabs.tabApiculture);
  }
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.