2013-08-25 12:02:25 -04:00
|
|
|
package ic2.api.recipe;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public interface IPatternStorage {
|
|
|
|
|
2013-08-29 18:57:13 -04:00
|
|
|
boolean transferPattern(ItemStack itemstack, int amountUU , int amountEU);
|
|
|
|
|
|
|
|
int[] getPatternvalus(ItemStack itemstack);
|
|
|
|
|
|
|
|
short getPatternCount();
|
|
|
|
|
|
|
|
ItemStack getPatternItemstack(int index);
|
2013-08-25 12:02:25 -04:00
|
|
|
|
|
|
|
}
|