I like to forget to add files

This commit is contained in:
adelikat 2015-04-29 20:57:20 +00:00
parent dbc3a5cb2c
commit 69146e5c1b
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.AppleII
{
public partial class AppleII : IInputPollable
{
public int LagCount { get; set; }
public bool IsLagFrame
{
get { return _machine.Lagged; }
set { _machine.Lagged = value; }
}
public IInputCallbackSystem InputCallbacks { [FeatureNotImplemented]get; private set; }
}
}