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

12 lines
287 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.
*/
2017-08-15 21:30:48 -07:00
public interface ICustomAlchemyConsumable {
ItemStack drainUseOnAlchemyCraft(ItemStack stack);
}