2015-01-15 14:04:18 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Cores.Atari.Lynx
|
|
|
|
|
{
|
2015-06-11 01:23:14 +00:00
|
|
|
|
public partial class Lynx : IInputPollable
|
|
|
|
|
{
|
2015-07-09 17:05:30 +00:00
|
|
|
|
public int LagCount { get; set; }
|
2015-01-15 14:04:18 +00:00
|
|
|
|
|
2016-01-26 10:34:42 +00:00
|
|
|
|
public bool IsLagFrame { get; set; }
|
2015-01-15 14:04:18 +00:00
|
|
|
|
|
2015-06-11 01:23:14 +00:00
|
|
|
|
// TODO
|
|
|
|
|
public IInputCallbackSystem InputCallbacks
|
|
|
|
|
{
|
|
|
|
|
[FeatureNotImplemented]
|
|
|
|
|
get { throw new NotImplementedException(); }
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-01-15 14:04:18 +00:00
|
|
|
|
}
|