2016-01-23 16:25:39 -05:00
|
|
|
package WayofTime.bloodmagic.api.incense;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
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 ITranquilityHandler {
|
2016-03-18 21:31:18 -07:00
|
|
|
TranquilityStack getTranquilityOfBlock(World world, BlockPos pos, Block block, IBlockState state);
|
2016-01-23 16:25:39 -05:00
|
|
|
}
|