Package extrabiomes.items

Examples of extrabiomes.items.ItemCustomCrop


      generator.registerCrop(crop);
    }
  }

  private static void createCropItems() {
    ItemCustomCrop item = new ItemCustomCrop();
    Stuff.crop = Optional.of(item);
    GameRegistry.registerItem(item, "extrabiomes.crop", Reference.MOD_ID);

    for (ItemCustomCrop.CropType type : ItemCustomCrop.CropType.values()) {
      final Element element;
View Full Code Here

TOP

Related Classes of extrabiomes.items.ItemCustomCrop

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.