10 lines
249 B
Java
10 lines
249 B
Java
package WayofTime.alchemicalWizardry.api.spell;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IItemManipulator
|
|
{
|
|
public List<ItemStack> handleItemsOnBlockBroken(ItemStack toolStack, List<ItemStack> itemList);
|
|
}
|