2015-04-29 20:57:20 +00:00
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Cores.Computers.AppleII
|
|
|
|
|
{
|
|
|
|
|
public partial class AppleII : IInputPollable
|
|
|
|
|
{
|
2015-06-11 01:23:14 +00:00
|
|
|
|
public int LagCount { get; private set; }
|
2015-04-29 20:57:20 +00:00
|
|
|
|
|
|
|
|
|
public bool IsLagFrame
|
|
|
|
|
{
|
|
|
|
|
get { return _machine.Lagged; }
|
2015-06-11 01:23:14 +00:00
|
|
|
|
private set { _machine.Lagged = value; }
|
2015-04-29 20:57:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IInputCallbackSystem InputCallbacks { [FeatureNotImplemented]get; private set; }
|
|
|
|
|
}
|
|
|
|
|
}
|