BizHawk/BizHawk.Emulation.Common/Interfaces/Services/ICycleTiming.cs

16 lines
339 B
C#

namespace BizHawk.Emulation.Common
{
public interface ICycleTiming
{
/// <summary>
/// Total elapsed emulation time relative to <see cref="ClockRate"/>
/// </summary>
long CycleCount { get; }
/// <summary>
/// Clock Rate in hz for <see cref="CycleCount"/>
/// </summary>
double ClockRate { get; }
}
}