2016-02-28 19:06:11 +00:00
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
|
|
|
{
|
2016-03-02 02:10:09 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This service is use by link cable capable cores to manage the status of the link cable
|
2016-12-14 15:11:07 +00:00
|
|
|
|
/// If available, the client will display the link cable status
|
2016-03-02 02:10:09 +00:00
|
|
|
|
/// </summary>
|
2016-02-28 19:06:11 +00:00
|
|
|
|
public interface ILinkable : ISpecializedEmulatorService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not the link cable is currently connected
|
|
|
|
|
/// </summary>
|
|
|
|
|
bool LinkConnected { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|