Package forestry.apiculture

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


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

Related Classes of forestry.apiculture.MaterialBeehive

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.