25 lines
475 B
C#
25 lines
475 B
C#
using BizHawk.Emulation.Common;
|
|
|
|
namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
|
{
|
|
public partial class C64 : IInputPollable
|
|
{
|
|
public bool IsLagFrame
|
|
{
|
|
get => _isLagFrame;
|
|
set => _isLagFrame = value;
|
|
}
|
|
|
|
public int LagCount
|
|
{
|
|
get => _lagCount;
|
|
set => _lagCount = value;
|
|
}
|
|
|
|
public IInputCallbackSystem InputCallbacks { get; } = new InputCallbackSystem();
|
|
|
|
private bool _isLagFrame;
|
|
private int _lagCount;
|
|
}
|
|
}
|