2014-12-12 01:49:54 +00:00
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2016-12-13 21:56:20 +00:00
|
|
|
|
/// 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
|
2014-12-12 01:49:54 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IDriveLight : IEmulatorService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies whether there is currently a Drive light available
|
|
|
|
|
/// </summary>
|
|
|
|
|
bool DriveLightEnabled { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies whether the light is currently lit
|
|
|
|
|
/// </summary>
|
|
|
|
|
bool DriveLightOn { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|