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