
Update things Fix some more things Update once more Refactoring and removing unnecessary null checks Woops Fix Nother fix Moar fix Fix imports Update ItemBindable.java
16 lines
294 B
Java
16 lines
294 B
Java
package WayofTime.bloodmagic.api.iface;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
/**
|
|
* Interface used for any item that can store LP in itself
|
|
*/
|
|
public interface IItemLPContainer
|
|
{
|
|
int getCapacity();
|
|
|
|
void setStoredLP(ItemStack stack, int lp);
|
|
|
|
int getStoredLP(ItemStack stack);
|
|
}
|