BizHawk/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IDriveLight.cs

12 lines
244 B
C#
Raw Normal View History

using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.PCEngine
{
public sealed partial class PCEngine : IDriveLight
{
2017-04-25 17:57:42 +00:00
public bool DriveLightEnabled { get; }
public bool DriveLightOn { get; internal set; }
}
}