BloodMagic/src/main/java/wayoftime/bloodmagic/iface/ICustomAlchemyConsumable.java

13 lines
284 B
Java
Raw Normal View History

package wayoftime.bloodmagic.iface;
import net.minecraft.item.ItemStack;
/**
* An interface for items that have custom drainage behaviour when used in
* certain alchemy recipes.
*/
public interface ICustomAlchemyConsumable
{
ItemStack drainUseOnAlchemyCraft(ItemStack stack);
}