using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Atari.Atari2600 { public partial class Atari2600 : 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 = true; private int _lagCount; } }