2014-06-27 19:43:09 -04:00
|
|
|
package WayofTime.alchemicalWizardry.api.rituals;
|
|
|
|
|
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-31 12:09:09 -04:00
|
|
|
* @param x
|
|
|
|
* @param y
|
|
|
|
* @param z
|
|
|
|
* @param meta
|
2014-11-22 10:15:29 -05:00
|
|
|
* @param runeType
|
|
|
|
* @return
|
|
|
|
*/
|
2015-07-31 12:09:09 -04:00
|
|
|
boolean isRuneType(World world, int x, int y, int z, int meta, int runeType);
|
2014-06-27 19:43:09 -04:00
|
|
|
}
|