mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
13 lines
407 B
Java
13 lines
407 B
Java
package api.hbm.fluidmk2;
|
|
|
|
import com.hbm.inventory.fluid.FluidType;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
public interface IFluidConnectorBlockMK2 {
|
|
|
|
/** dir is the face that is connected to, the direction going outwards from the block */
|
|
public boolean canConnect(FluidType type, IBlockAccess world, int x, int y, int z, ForgeDirection dir);
|
|
}
|