25 lines
443 B
C#
25 lines
443 B
C#
using BizHawk.Emulation.Common;
|
|
|
|
namespace BizHawk.Emulation.Cores.Sega.GGHawkLink
|
|
{
|
|
public partial class GGHawkLink : IInputPollable
|
|
{
|
|
public int LagCount
|
|
{
|
|
get => _lagCount;
|
|
set => _lagCount = value;
|
|
}
|
|
|
|
public bool IsLagFrame
|
|
{
|
|
get => _isLag;
|
|
set => _isLag = value;
|
|
}
|
|
|
|
public IInputCallbackSystem InputCallbacks { get; } = new InputCallbackSystem();
|
|
|
|
public bool _isLag = true;
|
|
private int _lagCount;
|
|
}
|
|
}
|