Properly integration with IC2 through ore dictionary. JEI recipes energy usage and time descriptions.

This commit is contained in:
Dragon2488 2016-07-15 17:28:41 +07:00
parent 2b148f3d68
commit 1f197c3728
19 changed files with 403 additions and 413 deletions

View file

@ -1,8 +1,9 @@
package techreborn.api.recipe;
import com.google.common.collect.ImmutableList;
import net.minecraft.item.ItemStack;
public interface IRecipeCompact {
ItemStack getItem(String name);
ImmutableList<ItemStack> getItems(String name);
}