mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-17 05:13:11 +01:00
22 lines
560 B
Java
22 lines
560 B
Java
|
package cofh.api.energy;
|
||
|
|
||
|
import net.minecraftforge.common.util.ForgeDirection;
|
||
|
|
||
|
/**
|
||
|
* 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(ForgeDirection from);
|
||
|
|
||
|
}
|