OSDN Git Service

ChemiCraft.java修正
[chemicraft/chemicraft.git] / common / pcc / chemicraft / util / ChemicalNBTRecipe.java
1 package pcc.chemicraft.util;
2
3 import net.minecraft.item.ItemStack;
4
5 public abstract class ChemicalNBTRecipe {
6
7         public abstract void setNBT(ItemStack[] materials, ItemStack result);
8
9         public abstract ItemStack[] getMatchItems(ItemStack[] materials);
10
11 }