
Do not consider anything outside of the true API safe to use. And even then, I'm changing things. Just wait. Please I beg you.
11 lines
368 B
Java
11 lines
368 B
Java
package WayofTime.bloodmagic.iface;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IDemonWillViewer {
|
|
boolean canSeeDemonWillAura(World world, ItemStack stack, EntityPlayer player);
|
|
|
|
int getDemonWillAuraResolution(World world, ItemStack stack, EntityPlayer player);
|
|
}
|