2014-06-27 19:43:09 -04:00
|
|
|
package WayofTime.alchemicalWizardry.api.rituals;
|
|
|
|
|
2015-07-29 08:23:01 -04:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
|
|
|
import net.minecraft.util.BlockPos;
|
2014-11-07 13:45:02 -05:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2014-10-13 22:33:20 +02:00
|
|
|
public interface IRitualStone
|
2014-06-27 19:43:09 -04:00
|
|
|
{
|
2014-11-22 10:15:29 -05:00
|
|
|
/**
|
|
|
|
* x, y, and z give the position of the Ritual Stone
|
|
|
|
* @param world
|
2015-07-29 08:23:01 -04:00
|
|
|
* @param pos
|
|
|
|
* @param state
|
2014-11-22 10:15:29 -05:00
|
|
|
* @param runeType
|
|
|
|
* @return
|
|
|
|
*/
|
2015-07-29 08:23:01 -04:00
|
|
|
boolean isRuneType(World world, BlockPos pos, IBlockState state, int runeType);
|
2014-06-27 19:43:09 -04:00
|
|
|
}
|