namespace BizHawk.Emulation.Common
{
///
/// Specifies an interface for returning the state of a LED drive light such as on Disk and CD Drives,
/// If available the client will display a light that turns on and off based on the drive light status
///
public interface IDriveLight : IEmulatorService
{
///
/// Gets a value indicating whether there is currently a Drive light available
///
bool DriveLightEnabled { get; }
///
/// Gets a value indicating whether the light is currently lit
///
bool DriveLightOn { get; }
}
}