BizHawk/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.IInputPollable.cs

25 lines
485 B
C#
Raw Normal View History

2014-12-01 14:21:37 +00:00
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Atari.Atari7800
{
public partial class Atari7800 : IInputPollable
{
public int LagCount
{
get { return _lagcount; }
set { _lagcount = value; }
2014-12-01 14:21:37 +00:00
}
public bool IsLagFrame
{
get { return _islag; }
set { _islag = value; }
2014-12-01 14:21:37 +00:00
}
2017-04-24 15:32:45 +00:00
public IInputCallbackSystem InputCallbacks { get; } = new InputCallbackSystem();
2014-12-01 14:21:37 +00:00
private bool _islag = true;
private int _lagcount;
}
}