BizHawk/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IInputPollable.cs

18 lines
410 B
C#
Raw Normal View History

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