blob: c495f4856b67e939239576b5e167feeb2daf9292 (
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);
}
|