BloodMagic/src/main/java/WayofTime/bloodmagic/api/ritual/IRitualStone.java

20 lines
435 B
Java
Raw Normal View History

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-29 21:00:26 +00:00
* It is provided via the API for easy obtaining of basic data.
*/
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
interface Tile
{
2015-10-31 20:47:43 +00:00
boolean isRuneType(EnumRuneType runeType);
}
}