BizHawk/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.IInputPollable.cs

29 lines
539 B
C#

using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
{
/// <summary>
/// ZXHawk: Core Class
/// * IInputPollable *
/// </summary>
public partial class ZXSpectrum : IInputPollable
{
public int LagCount
{
get => _lagCount;
set => _lagCount = value;
}
public bool IsLagFrame
{
get => _isLag;
set => _isLag = value;
}
public IInputCallbackSystem InputCallbacks { get; } = new InputCallbackSystem();
private int _lagCount = 0;
private bool _isLag = false;
}
}