BizHawk/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IInputPollable.cs

18 lines
378 B
C#

using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.AppleII
{
public partial class AppleII : IInputPollable
{
public int LagCount { get; set; }
public bool IsLagFrame
{
get => _machine.Lagged;
set => _machine.Lagged = value;
}
public IInputCallbackSystem InputCallbacks { get; } = new InputCallbackSystem();
}
}