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; } }