namespace BizHawk.Emulation.Common
{
///
/// This service is use by link cable capable cores to manage the status of the link cable
/// If available, the client will display the link cable status
///
public interface ILinkable : ISpecializedEmulatorService
{
///
/// Gets a value indicating whether or not the link cable is currently connected
///
bool LinkConnected { get; set; }
}
}