using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BizHawk.Emulation.Common
{
public interface ICycleTiming
{
///
/// Total elapsed emulation time relative to
///
long CycleCount { get; }
///
/// Clock Rate in hz for
///
double ClockRate { get; }
}
}