2015-01-13 19:55:36 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Cores.Sega.Saturn
|
|
|
|
|
{
|
|
|
|
|
public partial class Yabause : IInputPollable
|
|
|
|
|
{
|
2015-07-09 17:05:30 +00:00
|
|
|
|
public int LagCount { get; set; }
|
2015-01-13 19:55:36 +00:00
|
|
|
|
|
2016-01-26 10:34:42 +00:00
|
|
|
|
public bool IsLagFrame { get; set; }
|
2015-01-13 19:55:36 +00:00
|
|
|
|
|
|
|
|
|
// TODO: optimize managed to unmanaged using the ActiveChanged event
|
|
|
|
|
public IInputCallbackSystem InputCallbacks
|
|
|
|
|
{
|
|
|
|
|
[FeatureNotImplemented]get { return _inputCallbacks; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
|
|
|
|
|
}
|
|
|
|
|
}
|