2016-01-23 21:25:39 +00:00
|
|
|
package WayofTime.bloodmagic.api.incense;
|
|
|
|
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
2016-03-17 20:00:44 +00:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2016-01-23 21:25:39 +00:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public interface IIncensePath
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Goes from 0 to however far this path block can be from the altar while
|
|
|
|
* still functioning. 0 represents a block that can work when it is two
|
|
|
|
* blocks horizontally away from the altar.
|
|
|
|
*/
|
|
|
|
int getLevelOfPath(World world, BlockPos pos, IBlockState state);
|
|
|
|
}
|