This commit is contained in:
feos 2024-12-09 20:39:54 +03:00
parent 48913b4653
commit b1c43a6379
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
using BizHawk.Common;
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.Amiga
{
public partial class PUAE : IDriveLight
{
public bool DriveLightEnabled { get; }
public bool DriveLightOn { get; private set; }
public string DriveLightIconDescription => "Floppy Drive Activity";
}
}