mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
11 lines
354 B
Java
11 lines
354 B
Java
package api.hbm.conveyor;
|
|
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
public interface IEnterableBlock {
|
|
|
|
public boolean canEnter(World world, int x, int y, int z, ForgeDirection dir, IConveyorItem entity);
|
|
public void onEnter(World world, int x, int y, int z, ForgeDirection dir, IConveyorItem entity);
|
|
}
|