namespace BizHawk.Emulation.Common
{
///
/// Specifies an interface to returning the state of a LED drive light such as on Disk and CD Drives
///
public interface IDriveLight : IEmulatorService
{
///
/// Specifies whether there is currently a Drive light available
///
bool DriveLightEnabled { get; }
///
/// Specifies whether the light is currently lit
///
bool DriveLightOn { get; }
}
}