I like to forget to add files
This commit is contained in:
parent
dbc3a5cb2c
commit
69146e5c1b
|
@ -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; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue