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