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