2018-02-15 18:49:01 -08:00
|
|
|
package WayofTime.bloodmagic.iface;
|
2016-07-10 18:22:01 -04:00
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2017-08-15 21:30:48 -07:00
|
|
|
public interface IDemonWillViewer {
|
2016-07-10 18:22:01 -04:00
|
|
|
boolean canSeeDemonWillAura(World world, ItemStack stack, EntityPlayer player);
|
|
|
|
|
|
|
|
int getDemonWillAuraResolution(World world, ItemStack stack, EntityPlayer player);
|
|
|
|
}
|