18 lines
375 B
C#
18 lines
375 B
C#
![]() |
using System;
|
|||
|
using BizHawk.Emulation.Common;
|
|||
|
|
|||
|
namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
|||
|
{
|
|||
|
public partial class MGBAHawk : IInputPollable
|
|||
|
{
|
|||
|
public int LagCount { get; set; }
|
|||
|
public bool IsLagFrame { get; set; }
|
|||
|
|
|||
|
[FeatureNotImplemented]
|
|||
|
public IInputCallbackSystem InputCallbacks
|
|||
|
{
|
|||
|
get { throw new NotImplementedException(); }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|