2015-11-02 12:39:44 -08:00
|
|
|
package WayofTime.bloodmagic.api.ritual;
|
2015-10-31 13:47:43 -07:00
|
|
|
|
|
|
|
import net.minecraft.util.BlockPos;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2015-12-29 13:00:26 -08:00
|
|
|
/**
|
|
|
|
* This interface is for internal implementation only.
|
|
|
|
*
|
|
|
|
* It is provided via the API for easy obtaining of basic data.
|
|
|
|
*/
|
2015-10-31 13:47:43 -07:00
|
|
|
public interface IRitualStone {
|
|
|
|
|
2015-11-17 15:52:31 -08:00
|
|
|
boolean isRuneType(World world, BlockPos pos, EnumRuneType runeType);
|
2015-10-31 13:47:43 -07:00
|
|
|
|
|
|
|
interface Tile {
|
|
|
|
boolean isRuneType(EnumRuneType runeType);
|
|
|
|
}
|
|
|
|
}
|