BizHawk/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.IInputPollable.cs

23 lines
511 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Atari.Lynx
{
public partial class Lynx : IInputPollable
{
public int LagCount { get; set; }
public bool IsLagFrame { get; private set; }
// TODO
public IInputCallbackSystem InputCallbacks
{
[FeatureNotImplemented]
get { throw new NotImplementedException(); }
}
}
}