namespace Contralto { /// /// Used by classes implementing devices that are clocked (i.e. that are dependent /// on time passing in units of a single CPU clock.) /// public interface IClockable { void Clock(); } }