13 lines
284 B
Java
13 lines
284 B
Java
![]() |
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);
|
||
|
}
|