Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs
2 views
namespace BizHawk.Emulation.Common
{
	/// <summary>
	/// 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
	/// </summary>
	public interface ILinkable : ISpecializedEmulatorService
	{
		/// <summary>
		/// Whether or not the link cable is currently connected
		/// </summary>
		bool LinkConnected { get; }
	}
}