Delete Atari7800.IInputPollable.cs

This commit is contained in:
alyosha-tas 2017-08-29 09:40:13 -04:00 committed by GitHub
parent ede569dab3
commit 79e9cfd69a
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Atari.Atari7800
{
public partial class Atari7800 : IInputPollable
{
public int LagCount
{
get { return _lagcount; }
set { _lagcount = value; }
}
public bool IsLagFrame
{
get { return _islag; }
set { _islag = value; }
}
public IInputCallbackSystem InputCallbacks { get; } = new InputCallbackSystem();
private bool _islag = true;
private int _lagcount;
}
}