BizHawk/BizHawk.Emulation.Cores/Computers/Commodore64/C64.IInputPollable.cs

25 lines
464 B
C#
Raw Normal View History

2014-12-18 18:39:55 +00:00
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.Commodore64
{
public partial class C64 : IInputPollable
2014-12-18 18:39:55 +00:00
{
public bool IsLagFrame
{
get { return _isLagFrame; }
set { _isLagFrame = value; }
}
public int LagCount
{
get { return _lagCount; }
set { _lagCount = value; }
}
2014-12-18 18:39:55 +00:00
2017-05-30 17:09:46 +00:00
public IInputCallbackSystem InputCallbacks { get; }
private bool _isLagFrame;
private int _lagCount;
2014-12-18 18:39:55 +00:00
}
}