Package buildcraft.builders

Examples of buildcraft.builders.ItemBlueprintStandard


  public void preInit(FMLPreInitializationEvent evt) {
    templateItem = new ItemBlueprintTemplate();
    templateItem.setUnlocalizedName("templateItem");
    CoreProxy.proxy.registerItem(templateItem);

    blueprintItem = new ItemBlueprintStandard();
    blueprintItem.setUnlocalizedName("blueprintItem");
    CoreProxy.proxy.registerItem(blueprintItem);

    buildToolBlock = new BlockBuildTool ();
    buildToolBlock.setBlockName("buildToolBlock");
View Full Code Here

TOP

Related Classes of buildcraft.builders.ItemBlueprintStandard

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.