blob: ddc2cb12625adb056b896d24cd092235f66e416d [file] [log] [blame] [raw]
package universalelectricity.implement;
import net.minecraftforge.common.ForgeDirection;
/**
* Applied to TileEntities that can connect to UE wires.
*
* @author Calclavia
*
*/
public interface IConnector
{
/**
* Can this tile entity visually connect to a wire on this specific side?
*
* @param side
* - The side in which the connection is coming from.
* @return - True if so.
*/
public boolean canConnect(ForgeDirection side);
}