2014-11-13 14:24:29 +00:00
|
|
|
package WayofTime.alchemicalWizardry.api.spell;
|
2014-06-27 23:43:09 +00:00
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
2014-10-13 20:33:20 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface IItemManipulator
|
2014-06-27 23:43:09 +00:00
|
|
|
{
|
2014-10-13 20:33:20 +00:00
|
|
|
public List<ItemStack> handleItemsOnBlockBroken(ItemStack toolStack, List<ItemStack> itemList);
|
2014-06-27 23:43:09 +00:00
|
|
|
}
|