blob: d8573000fc8ab48142c414624ac47b02bef13fcb (
plain)
1
2
3
4
5
6
7
|
package gtPlusPlus.api.thermal.energy;
import net.minecraftforge.common.util.ForgeDirection;
public interface IThermalConnection {
boolean canConnectThermalEnergy(ForgeDirection arg0);
}
|