OSDN Git Service

7e9de4c6b8281de63037570abe3a272f16b3d777
[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 }