2014-11-30 23:50:07 +00:00
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Cores.Calculators
|
|
|
|
|
{
|
|
|
|
|
public partial class TI83 : IInputPollable
|
|
|
|
|
{
|
|
|
|
|
private int _lagCount = 0;
|
|
|
|
|
private bool _lagged = true;
|
|
|
|
|
private bool _isLag = false;
|
|
|
|
|
|
|
|
|
|
public int LagCount
|
|
|
|
|
{
|
|
|
|
|
get { return _lagCount; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-04 00:43:12 +00:00
|
|
|
|
public IInputCallbackSystem InputCallbacks { get; private set; }
|
|
|
|
|
|
2014-11-30 23:50:07 +00:00
|
|
|
|
public bool IsLagFrame
|
|
|
|
|
{
|
|
|
|
|
get { return _isLag; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|