BizHawk/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IInputPollabl...

25 lines
438 B
C#

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