2020-11-14 00:44:57 +00:00
|
|
|
package wayoftime.bloodmagic.incense;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2020-11-24 02:03:19 +00:00
|
|
|
/**
|
|
|
|
* This is a functional interface to return the TranquilityStack of a certain Block type
|
|
|
|
*/
|
2020-11-14 00:44:57 +00:00
|
|
|
public interface ITranquilityHandler
|
|
|
|
{
|
|
|
|
TranquilityStack getTranquilityOfBlock(World world, BlockPos pos, Block block, BlockState state);
|
|
|
|
}
|