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