2015-04-29 20:57:20 +00:00
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Cores.Computers.AppleII
|
|
|
|
|
{
|
|
|
|
|
public partial class AppleII : IInputPollable
|
|
|
|
|
{
|
2015-07-09 17:05:30 +00:00
|
|
|
|
public int LagCount { get; set; }
|
2015-04-29 20:57:20 +00:00
|
|
|
|
|
|
|
|
|
public bool IsLagFrame
|
|
|
|
|
{
|
|
|
|
|
get { return _machine.Lagged; }
|
2016-01-26 10:34:42 +00:00
|
|
|
|
set { _machine.Lagged = value; }
|
2015-04-29 20:57:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-24 13:21:05 +00:00
|
|
|
|
public IInputCallbackSystem InputCallbacks { get; } = new InputCallbackSystem();
|
2015-04-29 20:57:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|