2018-02-06 21:24:40 -08:00
|
|
|
package WayofTime.bloodmagic.incense;
|
2016-01-23 16:25:39 -05:00
|
|
|
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
2016-03-17 13:00:44 -07:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2016-01-23 16:25:39 -05:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2017-08-15 21:30:48 -07:00
|
|
|
public interface IIncensePath {
|
2016-01-23 16:25:39 -05:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
}
|