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

27 lines
566 B
C#

using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.PCEngine
{
public sealed partial class PCEngine : IInputPollable
{
public int LagCount
{
get => _lagCount;
set => _lagCount = value;
}
public bool IsLagFrame
{
get => _isLag;
set => _isLag = value;
}
public IInputCallbackSystem InputCallbacks => _inputCallbacks;
private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
private int _lagCount;
private bool _lagged = true;
private bool _isLag = false;
}
}