blob: 2c9e52008c221b70a690ad18ffa238fd3f3bb89a [file] [log] [blame] [raw]
package cofh.api.energy;
import net.minecraft.util.EnumFacing;
/** Implement this interface on TileEntities which should connect to energy transportation blocks. This is intended for
* blocks which generate energy but do not accept it; otherwise just use IEnergyHandler.
* <p>
* Note that {@link IEnergyHandler} is an extension of this.
*
* @author King Lemming */
public interface IEnergyConnection {
/** Returns TRUE if the TileEntity can connect on a given side. */
boolean canConnectEnergy(EnumFacing from);
}