11 lines
258 B
C#
11 lines
258 B
C#
![]() |
using BizHawk.Emulation.Common;
|
|||
|
|
|||
|
namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
|||
|
{
|
|||
|
public partial class C64 : IDriveLight
|
|||
|
{
|
|||
|
public bool DriveLightEnabled { get { return true; } }
|
|||
|
public bool DriveLightOn { get; private set; }
|
|||
|
}
|
|||
|
}
|