BloodMagic/src/main/java/wayoftime/bloodmagic/common/item/IBloodOrb.java

15 lines
329 B
Java
Raw Normal View History

package wayoftime.bloodmagic.common.item;
import javax.annotation.Nullable;
import net.minecraft.item.ItemStack;
/**
* Interface for any items that are Blood Orbs
* TODO: Should either merge this implementation with BloodOrb or clean it up idk
*/
public interface IBloodOrb
{
@Nullable
BloodOrb getOrb(ItemStack stack);
}