
* Initial stab at API structuring * Throwing all the things into the API* Eliminated all internal imports Also added some helpful comments *except for the ritual stuff * Reducing the API Threw back the altar/incense/unnecessary items to main Added in a functional API instance * API cleanup Removing all the unnecessities Smushed and vaporized some redundant recipe stuffs * Made API dummy instances Refactor packaging
15 lines
No EOL
329 B
Java
15 lines
No EOL
329 B
Java
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);
|
|
} |