From 69146e5c1b70a9fc3c698fb9edeab3f25d7e3bbf Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 29 Apr 2015 20:57:20 +0000 Subject: [PATCH] I like to forget to add files --- .../Computers/AppleII/AppleII.IInputPollable.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IInputPollable.cs diff --git a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IInputPollable.cs b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IInputPollable.cs new file mode 100644 index 0000000000..1d3588a317 --- /dev/null +++ b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IInputPollable.cs @@ -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; } + } +}