BloodMagic/src/main/java/WayofTime/bloodmagic/api/iface/ICustomAlchemyConsumable.java

13 lines
291 B
Java
Raw Normal View History

package WayofTime.bloodmagic.api.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);
}