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

14 lines
343 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
{
2016-02-22 23:50:11 +00:00
public bool IsLagFrame { get; set; }
public int LagCount { get; set; }
2014-12-18 18:39:55 +00:00
2016-02-22 23:50:11 +00:00
[SaveState.DoNotSave]
public IInputCallbackSystem InputCallbacks { get; private set; }
2014-12-18 18:39:55 +00:00
}
}