
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
13 lines
444 B
Java
13 lines
444 B
Java
package WayofTime.bloodmagic.api.iface;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.item.ItemStack;
|
|
import WayofTime.bloodmagic.api.soul.EnumDemonWillType;
|
|
|
|
public interface ISentientSwordEffectProvider
|
|
{
|
|
boolean applyOnHitEffect(EnumDemonWillType type, ItemStack swordStack, ItemStack providerStack, EntityLivingBase attacker, EntityLivingBase target);
|
|
|
|
boolean providesEffectForWill(EnumDemonWillType type);
|
|
}
|