blob: 5dadde57375f3bbfd2401f45a744b3dc6c8c1a67 [file] [log] [blame] [raw]
package universalelectricity.api.net;
import net.minecraftforge.common.ForgeDirection;
/**
* @author Calclavia
*
*/
public interface IConnectable
{
/**
* Can this TileEntity connect with another?
*
* @return Return true, if the connection is possible.
*/
public boolean canConnect(ForgeDirection direction);
}