2015-11-02 20:39:44 +00:00
|
|
|
package WayofTime.bloodmagic.api.ritual.imperfect;
|
2015-11-01 00:58:47 +00:00
|
|
|
|
2015-11-03 01:45:11 +00:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-11-01 00:58:47 +00:00
|
|
|
import net.minecraft.util.BlockPos;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public interface IImperfectRitualStone {
|
|
|
|
|
2015-11-03 01:45:11 +00:00
|
|
|
boolean performRitual(World world, BlockPos pos, ImperfectRitual imperfectRitual, EntityPlayer player);
|
2015-11-01 00:58:47 +00:00
|
|
|
|
|
|
|
World getWorld();
|
|
|
|
|
|
|
|
BlockPos getPos();
|
|
|
|
}
|