14 lines
557 B
Java
14 lines
557 B
Java
|
package net.minecraft.world.item;
|
||
|
|
||
|
import javax.annotation.Nullable;
|
||
|
import net.minecraft.core.BlockPos;
|
||
|
import net.minecraft.world.entity.LivingEntity;
|
||
|
import net.minecraft.world.level.Level;
|
||
|
import net.minecraft.world.phys.BlockHitResult;
|
||
|
|
||
|
public interface DispensibleContainerItem {
|
||
|
default void checkExtraContent(@Nullable LivingEntity p_391486_, Level p_150818_, ItemStack p_150819_, BlockPos p_150820_) {
|
||
|
}
|
||
|
|
||
|
boolean emptyContents(@Nullable LivingEntity p_396492_, Level p_150822_, BlockPos p_150823_, @Nullable BlockHitResult p_150824_);
|
||
|
}
|