BloodMagic/src/main/java/WayofTime/bloodmagic/orb/IBloodOrb.java
WayofTime d617911d7a Creation of 1.16.3 branch
Initial publishing of the 1.16.3 branch of the mod. A lot of systems are missing (such as Rituals and Living Armour), but enough is present for a decent Alpha release.
2020-10-24 08:59:04 -04:00

11 lines
184 B
Java

package wayoftime.bloodmagic.orb;
import javax.annotation.Nullable;
import net.minecraft.item.ItemStack;
public interface IBloodOrb
{
@Nullable
BloodOrb getOrb(ItemStack stack);
}