Package extrabiomes.items

Examples of extrabiomes.items.ItemCustomDye


    }
   
  private static void createDye() {
    if (!ItemSettings.DYE.getEnabled()) return;

    final ItemCustomDye dye = new ItemCustomDye();
    Stuff.dye = Optional.of(dye);
    dye.setUnlocalizedName("extrabiomes.dye").setCreativeTab(Extrabiomes.tabsEBXL);
    GameRegistry.registerItem(dye, "extrabiomes.dye", Reference.MOD_ID);

    dye.init();
  }
View Full Code Here

TOP

Related Classes of extrabiomes.items.ItemCustomDye

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.